The Word Association Game is a five-round browser challenge in which every round opens with one short association phrase and rewards 200 points for a first-clue answer. Each additional clue you reveal costs 40 points, so solving all five rounds from the very first association produces an exact 1,000-point maximum. The accepted response in every round is one ordinary English noun, and the game ends after five successful rounds or after a second distinct wrong guess, whichever comes first. Associations are deliberately short rather than long riddles, so the strategic loop centers on deciding whether to guess immediately or trade 40 points for one more visible clue. The full score ladder is visible: one clue awards 200 points, two clues award 160, three clues award 120, four clues award 80, and all five clues award 40. The fifth clue is the floor, never negative. Scoring is computed as max(40, 240 − 40 × visible clues), so the cost of revealing a clue is always exactly 40 points and is shown before you commit to a guess.

How the Five-Round Structure Works
Each round in the Word Association Game follows the same compact shape: one clue is visible at the start, you type a single English noun, and the round either resolves or hands you a clue reveal. The associations are intentionally short — environment, component, season property, location behavior, or motion relationship — rather than long riddles that encode a single object in a paragraph. That means a successful first guess depends on recognizing the link between the displayed phrase and one ordinary noun, not on decoding elaborate language. Every new round resets the visible clue count back to one, so a previous round's reveal does not carry into the next one. Across all five rounds, the only information shown is the round number, the visible association phrases, the clue count, the current potential value, your attempt count, neutral feedback, and the text input itself. Nothing about the answer is hidden in the page itself, so guessing requires reasoning rather than inspection.
The Score Table: How Clue Count Changes Your Points
Every visible clue you reveal carries an exact 40-point cost, and the score ladder is fixed across all five rounds.
| Visible clues at guess | Round value |
|---|---|
| 1 | 200 |
| 2 | 160 |
| 3 | 120 |
| 4 | 80 |
| 5 | 40 |
The formula is max(40, 240 − 40 × visible clues), so the fifth clue is the floor and additional reveals can never push a round below 40 points. Solving all five rounds from their first association yields 200 + 200 + 200 + 200 + 200 = 1,000 points, which is the exact published maximum. If you reveal one extra clue in a round you still solve, that round contributes 160 instead of 200, and your total drops by 40 points. The current round value is shown in the interface before you guess, so the cost of every reveal is never hidden. The score table is identical across rounds, and every new round restarts the visible clue count at one, so a previous round's reveal cannot reduce a future round's value.
How to Play the Word Association Game
- Read the first short association shown for the current round.
- If the connection is immediate, type one English noun into the input field and submit your guess.
- If the connection is unclear, choose Reveal next clue to add one more visible association; the round's potential value drops by exactly 40 points.
- Continue guessing or revealing up to five clues per round, keeping a single distinct miss in mind.
- Solve all five rounds the same way; a first-clue answer on every round produces the exact 1,000-point maximum.
- Press Restart at any time to return to round 1 with one visible clue, empty attempts, and a zero score.
What Counts as a Valid Guess
Input normalization is narrow and predictable. Leading and trailing spaces are removed, and ASCII letters are converted to lowercase, so an uppercase or mixed-case version of a correct noun behaves exactly like its lowercase form. Blank input, punctuation, digits, hyphens, and multi-word phrases are treated as malformed and ignored atomically: they do not advance the round, change the score, count as a guess, or update feedback state. The accepted response in each round is one English noun, with ordinary dictionary senses cross-checked against the Princeton WordNet 3.1 archive and Cambridge Dictionary pages during the auditing process. The visible interface never places answers in aria labels, data attributes, hidden text, placeholders, CSS content, or solution elements, so a correct guess must come from reading the clues rather than inspecting the page.
Two Misses and the Restart Recovery
Wrong guesses follow a two-distinct-error rule. The first normalized wrong word records one unique signature and leaves you with one miss; the round stays open. Submitting the same wrong word a second time — even with different case or surrounding spaces — is deduplicated and does not consume the second miss. A second different wrong word, however, deadlocks the game: the text input, guess button, and clue reveal control freeze, and further interaction becomes a no-op until you take action. Restart is the only recovery path. Restart restores round 1 with one visible clue, an empty attempt history, a zero score, and the same deterministic clue order, so a new run begins from the same starting position every time. All scoring, attempt counts, and reveal states are processed locally in the browser and are not uploaded for validation, so no account is required to play.
Why Each Round Shows One Short Association
The Word Association Game is intentionally different from a conventional word riddle. There is no paragraph that encodes a single disguised object, and there is no fixed block of hints shown at once. Instead, every clue is a short association such as an environment, component, season property, location behavior, or motion relationship, and the Reveal next clue control is a deliberate action with an immediate 40-point tradeoff. The interface updates both the visible clue count and the current round value before you submit your guess, so the cost is never hidden. This shape lets a single round resolve quickly when the link is obvious, and lets it open up gradually when the link is uncertain, without ever dumping a long riddle on the screen. The five-round structure makes the loop predictable: read, decide, type, reveal or submit, and move on.
Local Play, Touch Targets, and the Boss Key
The whole game runs in the browser, with no account, no download, and no upload of guesses or scores for validation. Guesses, revealed clues, attempts, and the running score are processed locally on your device, and your best score is kept locally rather than synced. The native text input and buttons support physical-key play, and every actionable control has at least a 44-pixel height so touch input is comfortable. The layout uses a minimum-zero grid, wrapping clue cards, breaking feedback text, and an overflow guard to prevent structural horizontal overflow on a 390-pixel viewport, so the page fits small phone screens without scrolling sideways. The shared GameShell supplies the running score display, the local best-score behavior, the Restart button, and a Boss Key that quickly hides the game during a shared session. Restart returns the game to its initial state at any moment, so interrupted runs can be retried without penalty.
If you want to put these rules into practice, open the Word Association Game in your browser and aim for the exact 1,000-point maximum. For a complementary read on the same tool, see Guess the Word from Clues: A 1,000-Point Strategy, which walks through how to push every round to its first-clue value.