Echo Path
Four nodes, four tones, one sequence that keeps getting longer until your memory - or your lives - runs out.
Simon, Reimagined
Echo Path takes the classic four-button memory toy and turns it into a head-to-head duel. Four nodes sit on the board - red, blue, green, yellow - and each one is wired to its own fixed musical tone. The board flashes and sounds the nodes in order, then hands control to you: tap them back in the exact same sequence.
Every run, whether it's solo Practice or a ranked Duel against an AI opponent, starts you at a three-step sequence and plays out on a 60-second clock. There's no grid size to pick and no difficulty menu - the entire game is that one sequence, and it never stops getting longer. Nothing on screen reminds you what you already saw. You watch once, then you perform from memory.
In Duel mode you and the bot aren't sharing a board or racing down the same track. You each hold your own sequence, growing at your own pace, shown as two separate Len / Lives trackers stacked above the nodes. It plays more like two solitaire climbs happening on the same clock than a tug-of-war - which changes how you should think about pacing, covered in the last section.
The board also locks itself deliberately: while a sequence is playing back, the nodes go dead to clicks entirely, and they only wake up once the status label switches from WATCH SEQUENCE to YOUR TURN! You can't jump the gun by pre-tapping what you think comes next, and you can't accidentally register a stray click mid-playback. Every round is a strict watch-then-answer cycle, with no overlap between the two phases.
The Sequence That Keeps Growing
Before your first turn, Echo Path pre-fills three random steps - each one just Math.floor(Math.random() * 4), so any of the four nodes can appear, including back-to-back repeats of the same node. There's no pattern logic protecting you from that; the sequence is pure chance.
Playback has a fixed rhythm: a 600-millisecond pause before anything happens, then each node flashes and chimes for 400 milliseconds with a 150-millisecond gap before the next one starts. So a fresh three-step sequence takes about 600 + 3 × 550 = 2.25 seconds to watch. Clear a round and the game appends one more random step, waits 800 milliseconds, then replays the entire new sequence from node one - not just the new tail.
That compounding matters more than it sounds like. By the time you're holding a ten-step sequence, playback alone runs 600 + 10 × 550 = 6.1 seconds, and it only gets longer from there. On a 60-second clock, watching eats real time you can't get back - the growth isn't just a memory problem, it's a clock problem too.
There's no ceiling coded into the growth itself - the sequence just keeps appending one random step per successful clear for as long as you can keep clearing them. In practice, lives run out or the clock does long before the pattern becomes literally unplayable, but nothing stops you from pushing past ten, fifteen, or twenty steps in a single strong run if you can keep pace with both the recall and the shrinking time budget.
Encoding by Sight and Sound
The four tones aren't arbitrary. Red plays C4 (261.63 Hz), blue plays E4 (329.63 Hz), green plays G4 (392.00 Hz), and yellow plays C5 (523.25 Hz) - a rising C-major arpeggio. That means every sequence Echo Path generates is also a tiny, if erratic, melody. A pattern like green-red-yellow-blue doesn't just look like four colored flashes; it sounds like a specific little tune, because the pitches jump around a recognizable chord instead of moving randomly through noise.
This gives you two independent channels to store the same information: a visual one (which node lit up, where it sits on the board) and an acoustic one (which note played, how the pitch moved). Leaning on both is more reliable than either alone, especially past five or six steps when pure visual recall starts to blur.
- Try humming or mentally singing the sequence as it plays, not just watching the flashes.
- Notice direction - is the pitch climbing (toward yellow) or falling (toward red)? That's often easier to hold than 'which exact color was third.'
- Your own taps also flash and chime (briefly, for 200 milliseconds), so the feedback reinforces the color-to-tone pairing while you answer, not just while you watch.
Where Sequences Fall Apart
Tap the wrong node and three things happen at once: you lose one of your three lives, the board flashes a brief wrong sound and shakes for a quarter second, and - critically - your sequence length does not drop. After an 800-millisecond pause, the exact same sequence replays from the very first node. You're not punished with a shorter pattern; you're punished with a mandatory do-over of the one that just beat you.
Say you're holding a seven-step sequence: green, yellow, red, blue, green, yellow, red. You correctly tap the first four - green, yellow, red, blue - then fumble the fifth, hitting yellow when green was expected. That costs a life (three lives down to two) and the board shakes, but the sequence is still seven steps long. After the replay, you watch all seven again from the top and have to clear the whole thing to advance to length eight.
Run out of lives entirely - three wrong taps, whether spread across different lengths or burned on one stubborn sequence - and the match ends immediately, win or lose determined by whatever length you'd reached. There's no partial credit and no way to 'bank' a long sequence once you're eliminated.
How to Extend Your Span
Because a miss costs a life and forces a full replay rather than a shortcut, guessing fast is close to the worst strategy in the game. Speed only helps once you're actually certain of the sequence; a wrong guess costs more time than a careful one ever would.
- Use the forced replay. If you do miss, treat the redo as a free second look rather than a moment to panic - the game is effectively handing you another rehearsal of the exact pattern that beat you.
- Chunk instead of chaining. Break a long sequence into groups of three or four nodes rather than trying to hold one continuous string - it's the same trick that makes phone numbers easier to remember in blocks.
- Don't expect alternation. Since every step is generated independently at random, the same node can repeat back-to-back. Trust what you actually saw over what 'feels' like a natural pattern.
- Respond the instant the board says YOUR TURN! Nodes only unlock after the full sequence finishes playing, so there's no benefit to waiting - every second you hesitate is clock you don't get back on a 60-second timer.
- Lean on the arpeggio. Pairing color memory with the rising-pitch pattern from the previous section catches errors your eyes alone might miss.
Duel Mode and Sudden Death
Your opponent isn't tapping a visible board - its progress is simulated. Once per second the game checks a bot timer against botSpeed, calculated as max(1.5, 6 - (bot.elo - 1200) × 0.005) seconds. A 1200-ELO bot attempts a new sequence roughly every 6 seconds; a much higher-rated bot can attempt one as often as every 1.5 seconds - that floor is hard-coded, so no opponent gets faster than that.
On each attempt, the bot rolls against its own accuracy, reduced slightly as its sequence grows (bot.accuracy - opponentScore × 0.03), so longer runs get shakier for the bot too. Pass the roll and its length ticks up by one, logged in the sidebar chat ('Reached sequence length 6'). Fail it and the bot loses one of its own three lives - lose all three and you win the match instantly, regardless of your own current length.
If neither side is eliminated, the 60-second clock decides it: whoever holds the longer sequence when time expires wins, and a tie goes to you. The last ten seconds switch the timer into a red countdown with a tick on every second - a warning, not a rule change, since the sequence mechanics stay identical right up to zero. In Practice mode this bot logic never runs at all; you're purely climbing your own sequence against the clock with no opponent track to watch.
Frequently Asked Questions
How long is the starting sequence, and how much does it grow each round?
You start at a three-step sequence. Clear it and Echo Path appends one more random node, then replays the whole thing from the top - so length climbs 3, 4, 5, 6 and onward for as long as you keep clearing rounds correctly.
What actually happens when I tap the wrong node?
You lose one of your three lives and the board shakes, then after a short pause the exact same sequence replays from the first node - your sequence length doesn't drop, you just get another attempt at the identical pattern. Lose all three lives and the match ends immediately.
How long is a match, and does anything change near the end?
Every match, Practice or Duel, runs on a 60-second clock. In the final ten seconds the timer switches to a red countdown with a tick sound each second, but that's a warning only - the sequence and scoring rules stay exactly the same until time runs out.
How is the winner decided in Duel mode?
You and the AI opponent climb separate sequence tracks on the same clock. If the bot burns through all three of its lives first, you win instantly. Otherwise, whoever has the longer sequence when the 60-second clock hits zero wins, and a tie goes to you.
Can I see the sequence the AI opponent is playing?
No. The bot's board isn't shown - you only see its current length and remaining lives in the sidebar, plus chat updates like 'Reached sequence length 6.' Its pass or fail on each attempt is calculated from its ELO-based speed and accuracy, not displayed on screen.
Do sequences ever repeat the same node twice in a row?
Yes. Every new step is chosen completely at random from the four nodes, so back-to-back repeats like green, green are possible. Don't assume the pattern always alternates colors - play what you actually saw.
Does tapping faster earn a better score?
No - your score is purely the sequence length you reach, not your reaction time. A wrong tap costs a life and forces a full replay of the same sequence, so accuracy is worth far more than speed once you're unsure of a step.
More Memory Recall Games
Related Guides
Ready to train?
Jump into a free 1v1 cognitive duel or a solo practice round in seconds. No download required.
Play Scotix Free