A backward digit span test in browser form is a five-round exercise that asks you to study a fixed digit string, hide it on cue, and type those exact digits back from last to first, with a clean run always scoring exactly 1,000 points. That single sentence captures three things the page does differently from a casual memory flash game: there are no randomly drawn strings, the source is hidden only when you choose, and the score is the same on every perfect playthrough. Backward Digit Span keeps the entire challenge visible from the moment the page loads, so a player never has to guess what round is coming next, what counts as a correct answer, or how points are added up. The page is built for short, repeatable practice rather than timed recall: there is no countdown, no fade animation, and no reaction window, so the only ability being asked of you is to hold a short string, mentally reverse its order, and type it without a mistake. Behind that simple challenge sit several deliberate product rules, and the rest of this article walks through every one of them so a first-time player can complete a clean run, understand the scoring, and reuse the same route on later visits without confusion.

What the Backward Digit Span Test Is
The Backward Digit Span Test is a single-page browser game built around one task: read a short digit string, hide it, and type it back in reverse. The page presents the challenge as five rounds that grow by one digit at a time, with the first fixture holding three characters and the last fixture holding seven. There is no random draw: the route is fixed, the score is fixed, and the rules for what counts as a correct answer are spelled out in plain language so the page can be replayed, audited, and explained.
Three design choices keep the challenge reproducible. First, the same five fixtures appear in the same order on every visit, so every run looks identical. Second, scoring is exact instead of approximate: each correct round adds 200 points, which is why five correct entries resolve to 200 × 5 = 1,000 points. Third, the miss and deadlock rules are explicit, so a player never has to guess whether an incomplete entry counts as a miss, whether a partial match can earn a few points, or whether one mistake ends the run on the spot.
The page also separates the task from speed. The source is hidden only when you choose to hide it, the input field stays focused until you submit, and no hidden timeout waits to expire. That makes the run accessible for keyboard play, touch play, and pointer play on the same page.
How to Reverse a Round in Five Steps
Every round follows the same three-phase flow, and the very first round of a fresh run uses the same five steps as the later rounds.
- Wait for the source to show as covered. The page opens with the first fixture, 583, hidden from view, and the round counter starts at 1.
- Choose Reveal digits, or press Enter, to display the source. Read it slowly or in chunks because there is no countdown pushing you to look away.
- Choose Hide and answer backward, or press Enter again, to clear the display. The source disappears, the input field receives focus, and the prompt asks for a response of the same length as the hidden source.
- Type the digits from last to first using the digit keys. Press Backspace to correct a mistake before you submit. Letters, punctuation, and responses longer than the fixture are ignored as attempts.
- Press Enter or choose Submit backward response. A full exact match advances to the next fixture, awards 200 points, and rolls the round counter forward; a partial entry is silently ignored, not counted as a miss.
Repeat those five steps for rounds two through five, and the same fixed route carries you from a three-digit reverse to a seven-digit reverse on a clean run.
The Fixed Five-Round Route
The route through the Backward Digit Span Test is identical on every visit, and the strings are disclosed up front so you can read the entire challenge before you play. The lengths grow by one digit per round, which lets you warm up with a short string and finish on the longest.
| Round | Source length | Source string | Correct backward response |
|---|---|---|---|
| 1 | 3 | 583 | 385 |
| 2 | 4 | 1946 | 6491 |
| 3 | 5 | 72038 | 83027 |
| 4 | 6 | 461905 | 509164 |
| 5 | 7 | 8391724 | 4271938 |
Because the page publishes those five strings, every state transition in a run can be checked against this table. There is no hidden variable, no per-visit randomization, and no chance that a different set of digits will appear on a later playthrough. That fixed structure is the reason the run is short, repeatable, and easy to explain.
What "Backward" Actually Means
Backward in this game is a strict character-by-character operation, not a loose sense of "reversed in your head." The displayed digits are treated as a string of symbols, and the expected response is the same string read from the final character to the first.
Worked example. For the fixture 72038, list the digits one at a time from the end of the string to the start:
- Last digit of 72038: 8
- Next: 3
- Next: 0
- Next: 2
- First digit of 72038: 7
Read top to bottom, those five characters give the response 83027. The zero stays in its original position rather than vanishing or being treated as a leading zero, which is what keeps the response at exactly five characters.
The same rule produces every other response in the disclosure table: 385 from 583, 6491 from 1946, 509164 from 461905, and 4271938 from 8391724. The response must match every reversed character in the exact same order before the next round begins, which means a single swapped digit, a missed digit, or an extra digit turns the entry into a miss rather than a near miss.
Keyboard Shortcuts and Controls
The full five-round run works with just the keyboard, which keeps the exercise accessible for players who prefer physical key input. The page treats input the same way regardless of whether the source and entry boxes are reached by mouse, touch, or key.
The core key bindings are:
- Press Enter while the source is covered to reveal it.
- Press Enter again while the source is visible to hide it and focus the digit input.
- Type the reversed response using the number keys above the letters, the numpad, or a mix of both.
- Press Backspace to delete the most recently entered character.
- Press Enter again (with a non-empty response that matches the source length) to submit the entry.
Buttons remain visible alongside those keys. The Reveal digits, Hide and answer backward, Submit backward response, and Restart controls stay available for pointer and touch players, and the status text on the page reports the current round, source length, miss count, feedback, score, and terminal state. A shared site-wide boss key is also wired into the page: pressing Escape twice opens the spreadsheet view, and pressing Escape twice again returns to the game.
Score, Deadlock, and Restart Rules
The scoring math is small enough to do in your head. Each correct full-length match adds 200 points, and five correct entries always add up to exactly 1,000 points (because 200 × 5 = 1,000). There are no partial points, speed bonuses, or hidden multipliers, so 1,000 is the maximum reachable score and any lower total means at least one round was missed.
The miss counters follow a clear two-step rule. Submitting a full-length entry that does not match the expected reversed string counts as an attempt: the miss counter rises by one and the same fixture returns to its covered phase so you can reveal it and try again. That first miss is recoverable, which means the run continues with the same five-round route intact. Any second miss anywhere in the route deadlocks the run. A visible deadlock freezes reveal, hide, input, and submit actions, so extra clicks or repeated key presses cannot change the score or unlock a hidden next round.
The Restart control resets the round, score, miss count, entry field, feedback line, and terminal state together. Where the browser allows it, the page stores a best-score value in local storage so repeat visits can show a record; if local storage is blocked, the current run still plays end to end and only the optional best-score display is hidden.
Why This Page Is Not a Clinical or IQ Assessment
The page shares words with a well-known memory research task, but the page itself is a casual browser game, not a clinical tool. The fixtures are product-authored rather than drawn from a published testing protocol, the study phase has no time limit, the retry rule is generous, and the scoring formula is a fixed entertainment formula rather than a percentile, ratio score, or working-memory index.
A 1,000-point run only means the disclosed five-round entertainment route was completed under the rules above. It does not diagnose attention, working memory, intelligence, cognitive decline, or any learning condition, and it cannot be used to support a health, school, employment, safety, or admissions decision. Repeat players may eventually memorize the responses, and that is an expected outcome: the fixed route is intended for replay, auditing, and explanation rather than as evidence of memory improvement.
Related Five-Round Memory Challenges
Players who enjoy the deterministic five-round structure often move on to neighbors that change the cognitive task while keeping the same fixed-fixture, no-timer feel. The Number Memory Test practices forward recall on five fixed strings of increasing length, sharing the reveal/hide rhythm without the reversal step. The Number Sequence Quiz identifies five different arithmetic patterns.
For positional or visual memory specifically, the Visual Memory Test, the Pattern Memory Game, and the Position Memory Game use fixed fixtures and complete keyboard support without timing pressure. The Binary Decoder Game and the Pattern Completion Test offer deterministic recall and rule practice with the same five-round shape. None of those pages should be read as a clinical digit-span assessment; they are short reproducible puzzles built for casual, repeatable play.