The Hidden Words Puzzle is a hidden word game online where each correct answer is permanently cleared from one persistent 5 by 5 board and every remaining letter falls downward within its own column. You begin with a fixed grid, one five-letter noun target, and a score of zero. Each correct selection through cells that share an edge becomes empty, then gravity compresses each column independently so letters keep their vertical order and align against the bottom row. The next target must be located on this transformed board, not on a replacement grid. Diagonal jumps and reused cells are rejected, so the routing constraint is stricter than a typical find-the-words activity. Five successful removals each award 200 points, producing an exact final score of 1,000. A second distinct wrong coordinate path locks the board; only Restart restores the original layout, score, and miss history. The game runs entirely in the browser with touch, mouse, and full keyboard support, and no account or upload is required.

hidden word game online
hidden word game online

Most online hidden word activities keep the letters in place after each successful find; once a word is located, the same grid is reused for the next round or a fresh grid is loaded. The Hidden Words Puzzle is deliberately different. Its central mechanic is real column gravity: every correct path of orthogonally adjacent cells is written as empty, then each column is compressed downward so its nonempty letters align against the bottom row. There is no sideways drift, no replacement grid, and no preset that gets swapped in between rounds. The result is that every later target is played on the literal result of the previous removal.

PropertyTypical online word searchHidden Words Puzzle
Letters after a correct findRemain in placeCells become empty
Board between wordsSame grid or fresh gridSame grid, transformed by gravity
Allowed directionAny compass direction, often diagonalOrthogonal only — shared edge required
Reusing a cell in one pathOften allowedRejected
Move after removalNoneEach column falls downward
Per-round pointsVariable200, exact
Final scoreVariableExactly 1,000

Compared to a Word Search game that keeps its letters fixed, the Hidden Words Puzzle turns each answer into a small physical event on the board. Because the same compact board is used from the first move to the last, players can reason about how one removal changes the space available for the next target rather than scanning five unrelated puzzles.

The Board, Targets, and How Gravity Works

The board is a 5 by 5 grid, and each of the five fixed targets contains exactly five letters. A path begins at any nonempty cell you choose. Every later cell must share a horizontal or vertical edge with the previous one — Manhattan distance exactly 1 — so diagonal jumps are not allowed. The same coordinate cannot be used twice within a single path, and an empty cell cannot be part of the path at all.

Selected cells show an order number so the route remains visible without relying on color alone. When Check word confirms the path, those exact cells are written as empty. Each column is then processed independently: its remaining nonempty letters retain their vertical order and align against the bottom row, while empty spaces collect above them. No letter crosses into a neighboring column, no new board is loaded, and no preset replaces the grid.

The gravity behavior is verified by a test-private literal board and an independent removal-and-column-compaction oracle. That oracle removes cells and compresses columns without calling the product gravity function, so the assertion that columns really fall is not a self-claim but a separately authored check. One of the five target paths is selected on the fifth row after the first clear, directly proving that letters moved downward before the next round. The full suite reaches an entirely empty board only after all five successful checks.

How to Play the Hidden Word Game Online

If your goal is to learn how to play this hidden word game online with confidence, follow these concrete steps in order before opening the Hidden Words Puzzle page.

  1. Read the current five-letter target shown in plain text near the board, then look for that spelling across the grid before selecting anything.
  2. Pick the first letter anywhere on the board; any nonempty cell is a valid starting coordinate.
  3. Tap, click, or use the keyboard to select the next letter in the path. It must share an edge with the previous selection. Use Clear path to revise the route without spending a miss.
  4. Continue until exactly five cells are selected. The Check word button is enabled only at that length; pressing it earlier has no effect.
  5. On a correct path, the chosen cells become empty, every column falls downward within itself, and your score increases by exactly 200 points.
  6. Read the new target on the post-gravity board, not on a fresh layout, and repeat the process for the remaining targets.
  7. Avoid a second distinct wrong coordinate path. If it occurs, the board locks and only Restart returns the original board, first target, zero score, and empty miss history.

Scoring, Misses, and the Two-Wrong Rule

Scoring is fully deterministic. Each of the five correct removals awards 200 points, so the only achievable final score from a clean run is 1,000. There is no bonus for speed, no penalty for the first miss, and no partial credit for an incomplete path. The breakdown is shown in the table below.

ActionEffect on miss count or score
First unique wrong path+1 miss, score unchanged
Replay of the same wrong pathNo change (deduplicated)
Second distinct wrong pathBoard locks until Restart
Correct pathScore +200, no miss change
RestartMiss set cleared, score reset to 0

The miss policy is also strict and explicit. A wrong complete coordinate path records one unique signature. Checking that exact same ordered path a second time is deduplicated and does not consume another miss, so accidentally re-entering your last attempt will not lock the board. Invalid coordinates, out-of-range cells, fractional coordinates, empty cells, repeated cells, nonadjacent jumps, incomplete checks, and completed states also leave protected state unchanged. A second distinct wrong path is the lockout condition: letter buttons, Clear path, and Check word become frozen, and subsequent logic calls are atomic no-ops. Restart is the only recovery path. It restores the original board, the first target, an empty selection, a zero score, and an empty miss set.

Accessible Controls: Touch, Mouse, and Keyboard

The board is built for equal input. Every occupied letter is a native button with at least a 44-pixel interaction height, which keeps the touch target comfortable on phones and tablets. Keyboard users can Tab through available cells and press Enter or Space to select. Clear path removes the current selection without changing the board or the miss history. Check word is enabled only when the path contains the same number of cells as the target, so partial paths cannot trigger a check.

The current target, selected letters, selection count, unique miss count, round, and score are all exposed as text, not encoded as color alone. Selected cells also show an order number so the route remains understandable even with high-contrast or color-blind profiles. The constrained square grid, minimum-zero columns, breaking feedback text, and an overflow guard keep the page from developing horizontal overflow on narrow phones.

Where the Target Words Come From

The five target spellings are audited reference data rather than guessed nouns. The primary lexicon is the Princeton WordNet 3.1 database archive, which returned HTTP 200 when its dictionary file was retrieved. Five Cambridge Dictionary pages independently cross-check each spelling and noun entry, and each page also returned HTTP 200 during verification — for example, the Cambridge Dictionary eagle entry anchors one of the targets as a recognized English noun.

The board layout, target order, coordinate paths, gravity model, two-miss rule, and scoring are original product fixtures rather than dictionary claims. Solution coordinates are never placed in accessibility 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 selected it, so screen readers and switch users get a useful interface without the answer channel leaking into assistive technology.

Practical Tips for a Clean 1,000-Point Run

A few grounded habits make a clean run more reliable. First, read the target before selecting anything; the spelling is shown in plain text on the page, and the target lives on the current gravity state of the board, not on the layout you remember from earlier rounds. Second, when a path is partly built, prefer Clear path to abandoning cells by clicking them off, because the latter can introduce a reused coordinate into the next attempt. Third, plan one or two fall-back routes before pressing Check word so a wrong path does not cascade. Fourth, watch the column heights after each successful clear; knowing which letters have already dropped helps you locate the next target's starting cell. Finally, if you are uncertain about a route, take a slower second look — the only thing that costs you a miss is committing a distinct wrong path, and the round budget is tight.

For a deeper look, see Hitori Puzzle Rules Explained: A Complete Walkthrough.