An anagram game built around six-letter racks and evidence-backed clues awards exactly 1,000 points for completing five consecutive rounds, locks the run after a second distinct wrong answer, and lets the player repair the first mistake before deadlock. The Anagram Game is a deterministic browser-based challenge that does not call any word API during play, does not randomize racks, and does not require an account or download. Each of the five rounds displays one fixed six-letter tile rack, one ordinary-language clue, and an answer field that the player either types into using a physical keyboard or fills by tapping the rack tiles. Every accepted letter must come from the displayed rack, must not exceed its per-letter count, and must be a single ASCII letter, while digits, spaces, punctuation, or entries longer than six letters are rejected before any submission is counted. Solving all five rounds in order is the only path to the fixed 1,000-point completion score, and the score itself is not reduced by typing method, by Backspace use, or by elapsed clock time.

anagram game
anagram game

The Five Rounds, Racks, and Clues

The Anagram Game ships with five original rounds authored for Lizely rather than copied from any published word game, dictionary list, or community exercise. Each round's answer and its associated rack are written together, the clue is delivered in ordinary English so that any reader of the description can form an expectation of length and word shape, and the round order is fixed for every browser session. Because the order, racks, and answers are deterministic, the five answers are unique, the five scramble orders are unique, no scramble is already in answer order, and every value, answer or scramble, contains exactly six ASCII letters. Each scramble is independently verified to contain precisely the same per-letter frequency map as its answer, which is the property the input system relies on when it enforces the rack's multiplicities.

RoundDisplayed RackClue Sense (paraphrased)
1TALPENA large round body in orbit around a star
2NEDRAGAn outdoor area where plants are grown
3MARESTA small narrow river
4DANCELA wax object with a wick that gives light
5GIDBERA structure carrying a route over an obstacle

The accepted answer spellings and intended clue senses are sourced from Cambridge Dictionary's entry for candle and from Cambridge Dictionary's entry for bridge as primary references, with three further Cambridge pages and five Dictionary.com pages acting as independent cross-checks in the evidence record. The rack orderings themselves are original Lizely fixtures, while the answer data is externally supported by both dictionary sources so that spellings and sense assignments can be reproduced outside the game.

How to Play the Anagram Game

The whole run is built around the same core action repeated five times: read a clue, rebuild a six-letter word from the displayed rack, and submit. The rack never changes within a round, the answer is fixed, and the only variable is how quickly the player recognises the dictionary-backed word the clue describes.

  1. Wait for the round to load so that the clue text, the six rack tiles, and the answer field are all visible on the same screen.
  2. Read the clue carefully and form a candidate answer in your head using only the six letters currently shown in the rack.
  3. Place letters into the answer field either by typing on a physical keyboard or by tapping the rack tiles in the order that spells your candidate.
  4. Confirm that every rack letter is used exactly once and that no rejected character snuck into the field, since rack tiles visually become unavailable as their occurrences are consumed.
  5. Press Enter or click the Submit answer button to compare the arrangement against the round's evidence-backed answer.
  6. If the arrangement matches exactly, the success message appears and the next deterministic round loads with its own rack and clue.
  7. After solving the fifth round, the run ends in a completed state and the score reads exactly 1,000 points.

Partial entries of one to five accepted letters stay editable without recording a mistake, and pressing Enter or Submit on an incomplete field simply asks the player to use every rack tile. Backspace removes the final accepted letter and returns that tile to the rack, so corrections during entry remain free as long as no full wrong arrangement has been submitted yet.

Input Rules and the Repairable Mistake Policy

The input logic accepts ASCII letters only, normalises them to uppercase so that lowercase and uppercase both work, and enforces the rack's available multiplicities on every change rather than only at submit time. The state boundary permits up to six characters and rejects anything beyond that length, rejects digits, spaces, or punctuation the moment they appear, and forbids a letter that is absent from the rack or any repeated letter beyond the rack's count. Because the answer field never holds hidden game state, rejected data cannot poison a partial entry, and the player can simply continue typing or tap a different tile to recover.

Player Action or Input ConditionHow the Game Responds
Zero to five accepted letters submittedRecords no mistake and prompts the player to use every rack tile
A letter not present in the rackRejected before submission and not counted as a mistake
A repeated letter beyond the rack's countRejected before submission and not counted as a mistake
Non-letter, digit, space, or punctuationRejected before submission and not counted as a mistake
First distinct wrong six-letter arrangementRecords one mistake and the field remains editable
Same wrong six-letter arrangement resubmittedFingerprinted by round and arrangement, so it does not count as a new mistake
Second distinct wrong six-letter arrangementDeadlocks the run until the player uses Restart
Exact six-letter match for the round's answerAdvances to the next deterministic round and clears the input
Fifth round solved correctlyCompletes the run and awards exactly 1,000 points

The wrong-arrangement fingerprint combines the round index with the full six-letter arrangement, which means an accidental Enter repeat or button double-click does not consume the second attempt on its own. To register a second mistake the player has to actually type or tap a different complete wrong arrangement, either in the same round or in a later one, so the same keyboard reflex that costs a strike in many other games stays safe here.

Scoring, Deadlock, Restart, and the Boss Key

The score is fixed at exactly 1,000 for completion and is not reduced by typing method, by the number of erases, or by elapsed clock time, so both a clean run with zero mistakes and a repaired run that still finishes all five rounds land on the same number. The release test does not call product validation helpers to prove the rack fixtures; an independent oracle defines the five answer, scramble, and clue triples literally and confirms frequency-map equality by counting each character, sorting the key-count pairs, and comparing the answer with its scramble. That oracle also confirms that all five answers are unique, all five scrambles are unique, every value contains exactly six letters, and no scramble equals its answer in any round.

Both completion and deadlock are terminal states. After either outcome, typing, rack-tile clicks, direct input replacement, Backspace, and submission cannot modify the frozen state, so an accidental keystroke mid-celebration does not damage the saved score. Restart creates a new exact initial state: round one selected, the TALPEN rack restored, the input cleared, zero solved rounds, zero mistakes, no wrong fingerprints, zero score, and no feedback displayed. The best score is retained only in the browser's local storage through the shared GameShell, so scores never leave the device and no server side state is involved. A double Escape opens a discreet spreadsheet-style boss screen, and another double Escape returns to the same round without disrupting the run, which is useful when the game needs to vanish from view in a hurry.

Solving Tips for the Five-Round Run

A practical first move is to scan the rack for likely word endings, since every round is exactly six letters long and the answer must use every rack tile once. Suffix patterns such as -ED, -ER, -LE, -EN, and -AN already lock in two or three tiles and shrink the search space quickly; the clue then narrows the choice between the arrangements those endings support. Once a candidate is in mind, verify visually that every rack tile has been consumed exactly once, paying close attention to repeated letters because the multiset check still rejects an answer that miscounts them even when the spelling looks plausible. Finally, take advantage of the repairable first mistake: a wrong submission keeps the field editable and the same arrangement can be resubmitted without adding a second strike, so the player can keep iterating until the right arrangement is reached, the run is completed, or the second distinct error locks everything until Restart. Repeated play naturally becomes easier through memory, which is expected and is part of why the score is fixed rather than time-bonus driven.