Find the hidden words on a single 5×5 grid where every correct answer permanently removes its letters and the remaining letters drop inside their own columns. The Hidden Words Puzzle runs five rounds against one persistent board, awards 200 points per cleared target for a fixed 1,000-point finish, and uses real gravity instead of loading a new puzzle between rounds. Each target is a five-letter noun; each path must move through cells that share a horizontal or vertical edge; each correct check rewrites the same board; and a second distinct wrong path locks the board until you press Restart. Because the same compact board is used from the first move to the last, you can reason about how one removal changes the space available for the next target instead of merely scanning five unrelated puzzles.

People who search for ways to find the hidden words often expect a static letter grid that stays put after each find. The game described in this article breaks that expectation on purpose, so it helps to know the moving parts before you click the first cell.

find the hidden words
find the hidden words

A traditional word search puzzle presents a fixed grid and asks you to circle or highlight words hidden across horizontal, vertical, or diagonal runs. When you find a word, the grid stays exactly as it was. The Hidden Words Puzzle starts from a similar idea — find words in a letter grid — but treats each find as a board edit rather than a marker.

Three behaviors separate the two experiences:

  • One persistent board. The grid you start with is the only grid you ever play on. No replacement grid loads between targets.
  • Cells actually disappear. A correct path empties the five cells it used. The letters are not highlighted and left in place.
  • Real gravity runs after every clear. Empty space collects above; the surviving letters in each column slide down until they rest against the bottom of that column.

Those differences mean the second target is not a copy of the first. The board you face in round two is the result of round one's removal and gravity pass. The fifth target is played on the board left behind by rounds one through four, and the board is only fully empty after the fifth successful check.

How to Play Hidden Words Puzzle

Each round follows the same flow. Read the target spelled out in the prompt, then build a path of five cells through the current grid.

  1. Read the current five-letter target shown above the grid.
  2. Tap, click, or use the keyboard to select the first cell. Any occupied cell is a legal starting point.
  3. Select the next letter by moving only to a cell that shares an edge with the previous one — directly above, below, left, or right. Diagonal jumps are rejected.
  4. Never reuse a coordinate inside the same path. Selected cells display an order number so the route stays readable without relying on color alone.
  5. If the path is wrong, press Clear path to drop the selection without changing the board or the miss history. Then build a new route.
  6. Once five cells are selected, press Check word. The button stays disabled until the selection count matches the target length.
  7. A correct path empties its cells. Each column is then processed independently: its remaining letters keep their vertical order and settle against the bottom, leaving empty space above.
  8. A wrong complete path records one unique miss. A second distinct wrong path locks the board; Restart is the only way back.

The full game resolves as five successful checks in sequence. The path you build in round two starts from the transformed board left by round one, not from the original layout, so the same letter that started near the top of a column may end up near the bottom before you ever touch it.

What Happens When a Path Is Correct

Gravity in this game is a state transformation, not a visual flourish. After a correct check, the cells on your path are written as empty. Then each column is treated on its own: the surviving letters in that column keep the order they had before, and they are aligned to the bottom row. Empty space collects above them. No new board is loaded, no preset replaces the grid, and no letter moves sideways into another column.

One of the targets begins on the fourth row in the opening layout but is selected on the fifth row after the first clear, which directly proves letters moved downward before the next round started. An independent test oracle removes cells and compresses columns without calling the product gravity function and confirms the intermediate board state against an expected snapshot, so the gravity step is verified rather than trusted.

Mistakes, Locking, and Restart

The failure policy is deterministic. A wrong complete coordinate path records one unique signature, stored as the ordered list of cells you selected. If you check that exact same ordered path again, the game deduplicates it and does not add another miss. Clearing the selection and trying a different route, however, can produce a second distinct wrong path — and that is where the lockout triggers.

ActionEffect on BoardEffect on Miss Count
First wrong complete pathUnchanged, still playable+1 unique miss
Repeat of that exact pathUnchanged, still playableNo change (deduplicated)
Second distinct wrong pathLocked: letter buttons, Clear path, and Check word frozen+1 unique miss, then board deadlocked
Press Restart after lockOriginal board, first target, empty selection, zero score, empty miss setReset to zero

During a deadlock, every subsequent logic call becomes an atomic no-op. Invalid coordinates, out-of-range cells, fractional coordinates, empty cells, repeated cells, nonadjacent jumps, incomplete checks, deadlocked states, and completed states all leave the protected state unchanged. Restart is the only recovery path and fully restores the game to its initial state, including the local best score stored by the shared GameShell.

Scoring and Round State

Scoring is fixed and auditable. Each of the five targets clears for 200 points, so the exact end-of-game total is:

5 targets × 200 points = 1,000 points

The formula is the same regardless of how long the path runs, how many empty cells existed when you started a round, or how the gravity pass reshaped the columns. There is no bonus for short paths, no penalty beyond the two-miss lockout, and no speed multiplier. The current target, selected letters, selection count, unique miss count, round, and score are all exposed as plain text on the screen, so the running total stays in view instead of hiding behind a hidden variable. Score and best score live locally on your device, computed entirely client-side, and are not uploaded for processing.

Controls, Keyboard, and Accessibility

You can play with touch, mouse, or keyboard. Every occupied letter is a native button with at least a 44-pixel interaction height, so taps stay forgiving on small phones. Keyboard users can Tab through the available cells in the current selection pool and press Enter or Space to confirm. The constrained square grid, the minimum-zero columns, the breaking feedback text, and the overflow guard keep the page from developing horizontal scroll on narrow phones, so the layout stays usable whether you hold the device in portrait or landscape.

The shared GameShell also provides a Boss Key for quickly hiding the screen, deterministic Restart behavior, and a local best-score readout that persists across runs on the same browser. No account is required and nothing is sent to a server for scoring, which means the only thing that survives between sessions is the local best-score entry you earned on this device.

Where the Five Target Words Come From

The five target spellings are audited reference data, not guesses. Princeton WordNet 3.1 is the primary lexicon, and every target noun was read from the official dictionary archive. Each spelling was also cross-checked independently against the Cambridge Dictionary; for example, cloud and eagle each returned a valid noun entry that matches the spelling used in the game. The board layout, the order of targets, the coordinate paths, the gravity model, the two-miss rule, and the scoring are original product fixtures rather than dictionary claims.

Future solution coordinates are never placed in aria labels, data attributes, hidden text, or a DOM-resident path list. A cell exposes only its current visible letter, row, column, and whether the player has selected it. The test fixture may contain audited golden paths, but the interactive component does not import or render them. That keeps accessibility labels useful without turning them into an answer channel.

For players who already enjoy word games and want a different rhythm, the Hidden Words Puzzle rewards careful reading of the changing board more than fast eyes, which makes it a useful complement to denser titles like the word search or the anagram game that do not change shape after you solve them.