Anagram Game 1 is a five-round, browser-playable word unscramble that gives you one clue and six scrambled tiles per round and finishes at exactly 1,000 points. The Anagram Game is fixed and dictionary-backed rather than randomly generated: the round 1 answer is always PLANET (a large round body that orbits a star) and its rack always reads TALPEN, with no random reshuffle and no network call during play. Every round uses the same mechanic — read the clue, rearrange the six displayed letters into the answer, and submit the full six-letter arrangement — and the run as a whole is treated as a sequence of independent sub-puzzles rather than a streak. A clean run that hits all five answers with rack-checked input in place finishes at a fixed 1,000-point completion screen; one repaired mistake still lets you finish the run at the same 1,000, because the second-distinct-error boundary deadlocks the game rather than reducing points. Plays run entirely in the browser, no account or download is required, and only the best score persists in local browser storage between visits.

anagram game 1
anagram game 1

The Five Rounds at a Glance

Every round in Anagram Game 1 is an independent sub-puzzle rather than a streak or a difficulty ladder, which means the round you see on the rack does not depend on the round you just solved. The vocabulary is short by design: five answers, five racks, five clues. Each answer carries a Cambridge Dictionary primary source and a Dictionary.com cross-check, and every rack contains exactly the same per-letter frequency map as its answer — no round hides an extra letter, a missing letter, or a duplicate you cannot use. The order of the racks shown below is part of the fixture, as is the round sequence itself.

RoundAnswerClue senseScrambled rack
1PLANETlarge round body that moves around a starTALPEN
2GARDENarea where plants are grownNEDRAG
3STREAMsmall narrow riverMAREST
4CANDLEwax object with a wick that gives lightDANCEL
5BRIDGEstructure carrying a route over an obstacleGIDBER

Two of those clue senses are worth pinning down precisely before you play, because the game pins a single everyday meaning rather than a catalog of senses. CANDLE always means the wax-and-wick light source (Cambridge Dictionary, candle), not the unit of candlelight measurement, and BRIDGE always means a structure that carries a route over an obstacle (Cambridge Dictionary, bridge), not the card-game sense or the dental sense. Reading each clue in its plain, everyday reading — rather than reaching for a clever alternate meaning — is what makes the unscramble go quickly.

How to Solve Anagram Game 1

The play loop fits in a single sentence — read the clue, arrange the rack, submit — but each step benefits from a specific habit. The numbered flow below covers the actions the game expects, in the order you should perform them.

  1. Read the clue next to the rack and lock onto one ordinary-language reading (for BRIDGE, the structure-over-an-obstacle sense is the intended one).
  2. Scan the six rack tiles and note which letters can plausibly form endings or beginnings (TALPEN supports -EN and -AN; NEDRAG supports -ED and -AG; MAREST reshapes directly into -STREAM or -REAM).
  3. Type letters into the answer field, or tap the tiles in the order that forms the answer; both inputs normalize to uppercase and feed the same rack-multiset check.
  4. Verify before submitting that every rack letter appears exactly once; partial entries cost nothing and only a six-letter submission can be scored as a full answer.
  5. Press Enter or tap Submit answer with a confident arrangement; a correct full answer advances to the next deterministic round, clears the input, and shows a concise success message.
  6. If the arrangement is wrong, the first distinct full error costs one mistake but the entry remains editable; resubmitting the same unchanged wrong full arrangement is fingerprinted by the game and counted only once.
  7. Solve the fifth round (BRIDGE) and the game freezes on a completion screen worth exactly 1,000 points, with the run terminal unless you press Restart.

A practical habit is to identify a likely ending first, use the clue to pick among arrangements that fit that ending, and double-check that each rack tile appears exactly once before pressing Enter. The clue is your tie-breaker when two arrangements both look plausible; the rack multiset is your safety net against missing tiles.

How Exact Rack Enforcement Reads Your Input

Rack enforcement is what keeps the game fair. Every time the input changes, the game compares your current entry against the rack's frequency map — a per-letter count of how many times each letter is available — and the rule is strict. A letter absent from the rack is rejected before submission, an extra copy of a rack letter beyond the rack's available count is rejected, and digits, spaces, punctuation, or any entry longer than six characters is rejected. None of those rejections creates a hidden game state you can later blur with a Backspace; the input element is the only source of truth, and rejected data is discarded at the boundary. The check counts occurrences rather than treating a letter as a unique symbol, so a future audited round containing duplicates will still be enforced correctly.

Accepted input is normalized to uppercase, but the logic accepts either letter case on the way in. Native browser input handles ordinary typing, Backspace, Enter, and case inside the answer field, while a window-level keyboard handler accepts letters, Backspace or Delete, and Enter when focus sits on a rack tile or a control button. Repeated keydown events outside the answer field are ignored, which prevents a single held key from exhausting a rack or from firing multiple submissions into the engine. Backspace removes the last accepted letter and returns that tile to the rack, so an Edit never costs a turn.

Rack tiles visually fade to unavailable as their occurrences are consumed, which doubles as the player-facing view of the same multiset check the engine runs on every change. The full-width answer field shows the current arrangement so you can see exactly what is about to submit, and the controls wrap below the field on a 390-pixel viewport without any horizontal scrolling. Disabled state and labels communicate availability rather than color alone, so the input loop is usable with the keyboard, the mouse, or a touchscreen.

Why the Second Distinct Mistake Ends the Run

Anagram Game 1 separates incomplete work from wrong complete work, and that separation is what gives the run a clean error budget. A submission of fewer than six letters is treated as incomplete, so Submit answer and Enter record no mistake, and the game prompts you to use all six rack tiles before any error is counted. Because length, character class, and per-letter availability are already enforced on every keystroke, any six-letter submission is automatically an exact multiset permutation of the current rack, and the engine decides whether that permutation equals the answer or fingerprints it as a full error.

The first distinct wrong full arrangement records one mistake but keeps the entry editable, so you can correct the letters and resubmit without restarting the round. Resubmitting the same unchanged wrong arrangement does not record another mistake, because the game fingerprints each wrong submission by both its round index and its full arrangement. A second mistake therefore requires a different complete arrangement — whether you correct and resubmit in the same round or submit a new wrong arrangement in a later round — because the same string of letters retyped is still just one entry in the error log, not two. That same fingerprint policy is what blocks an accidental Enter repeat or a button double-click from consuming both attempts in a row.

The second distinct wrong full arrangement deadlocks the game until you press Restart, because completion and deadlock are the two terminal states. Restart rebuilds the exact initial state — round 1 selected, rack restored to TALPEN, empty input, zero solved rounds, zero mistakes, no wrong fingerprints, zero score, no feedback — so a deadlocked run costs only the time it took to reach the second mistake. The state boundary between the live run and the terminal screens is strict: typing, rack-tile clicks, direct input replacement, Backspace, and submission cannot modify the frozen state, which gives you room to read the screen and choose whether to restart.

Scoring 1,000 and What Ends the Run

The score is fixed. Solving all five rounds — round 5 being BRIDGE — awards exactly 1,000 points, and the score is not reduced by typing method, number of erases, or how long the run takes. A clean perfect run with zero mistakes and zero fingerprints finishes at 1,000, and a run that repaired its first wrong full arrangement still finishes at 1,000 once all five rounds are correct, because the repair replaces the wrong fingerprint rather than adding to it. The best score is kept only in local browser storage through the shared GameShell, so you can revisit your number without signing in or syncing to a server.

Both terminal outcomes — completion and the second-distinct-error deadlock — freeze the run. After either outcome, the keyboard, the rack tiles, the input field, and the submit control cannot modify the frozen state, so you can take your time reading the screen before deciding whether to start a fresh run. For a different walkthrough focused on the round structure and the exact 1,000-point route itself, the Five Rounds, Six Tiles, 1,000 Points guide covers that angle. Anagram Game 1 is recreational rather than diagnostic — it is not an intelligence test, a literacy assessment, an educational placement tool, a medical screen, or an employment test — so the only thing it measures is whether your arrangements match the clue's intended everyday sense and fit the rack exactly.