A five-round Idiom Quiz tests both idiom completion and figurative meaning for an exact 1,000-point total score, with 200 points awarded for each correct card. The quiz draws its five expressions — break the ice, a piece of cake, spill the beans, under the weather, and hit the nail on the head — directly from Cambridge Dictionary and independently cross-checks each one against its Wiktionary entry, so every accepted answer reflects a verified conventional form rather than a guess from memory. Three of the cards ask you to fill in the missing word of an established idiom, while two ask you to choose the conventional figurative meaning from four neutral options. The same four-choice interaction is used for every round, which means the question type changes without making the interface unpredictable. There is no account, no download, and no external gameplay API; grading happens entirely in your browser through a pure reducer that compares only the index of the option you selected.

What the Quiz Tests Across Five Rounds
The Idiom Quiz is a compact browser game built from five fixed English idioms: break the ice, a piece of cake, spill the beans, under the weather, and hit the nail on the head. Each round presents the same four-choice interaction, but the question type alternates. Three cards ask you to complete the missing word of an established idiom, and two cards ask you to pick the conventional figurative meaning from four neutral answer options.
This split matters because it separates form from sense. Knowing the literal words of an idiom is not the same as understanding what it actually means in conversation. Spill the beans looks like a kitchen accident on the surface, but the conventional meaning is about revealing a secret. Under the weather sounds like it could refer to working outdoors, feeling uncertain, or arriving late, yet the dictionary form is far narrower. Pairing completion cards with meaning cards in one five-round quiz gives a more honest read on idiom fluency than a stack of fill-in-the-blanks alone would.
The Five Idioms and Their Verified Meanings
Every form and meaning in the quiz was checked against Cambridge Dictionary and then cross-checked on its Wiktionary entry, not supplied from memory. All ten HTTPS pages returned HTTP 200 during implementation, which means the source material was live and consistent at build time. Merriam-Webster and Collins pages were evaluated as possible cross-sources but returned HTTP 403 in that environment, so they were not included as evidence. The reference content below is the same content the quiz draws from.
| Idiom | Verified form | Verified figurative meaning |
|---|---|---|
| Break the ice | break the ice | To do or say something that eases tension or starts a conversation |
| A piece of cake | a piece of cake | Something very easy to do |
| Spill the beans | spill the beans | To reveal a secret, often unintentionally |
| Under the weather | under the weather | Feeling slightly ill |
| Hit the nail on the head | hit the nail on the head | To describe exactly what is causing a situation |
Distractor options are designed to look plausible without matching the dictionary form. Break the ice does not become break the glass or break the snow. Spill the beans uses beans rather than seeds, peas, or rice. Hit the nail on the head ends with head rather than wall, board, or point. On the meaning side, under the weather is treated as feeling slightly ill rather than working outdoors, feeling uncertain, or arriving late, and a piece of cake is treated as something very easy rather than a literal dessert or a baking task.
How to Play the Idiom Quiz
- Open the quiz and read the first card. Decide whether the prompt is asking for a missing word or a figurative meaning; the card makes the question type clear before you look at the choices.
- Select one of the four neutral answer options. On touch and pointer devices, tap the answer row. On a keyboard, press the number keys 1 through 4 to pick directly, or use the arrow keys to move the highlight and Space to commit.
- Press Submit answer — or hit Enter on the keyboard — to grade the selection. The reducer compares only the index of the option you chose; the page markup does not carry a correct-answer flag, so no choice reveals itself before submission.
- Advance through all five rounds. A correct submission awards 200 points immediately and may surface a short review note about the previous idiom and its meaning. Wrong submissions never reveal the right choice.
- Reach an exact final score of 1,000 by answering all five dictionary-checked cards correctly: 5 rounds × 200 points = 1,000 points.
If you submit the same wrong selection twice on a single round, the repeated signature is deduplicated and the run continues. A second distinct wrong signature on the same round ends the run until you press Restart, which returns you to the first card with zero score and no stored errors.
Why Dictionary Sourcing Changes the Stakes
Many online idiom games ship with forms and meanings that drift, sometimes accepting spill the truth or hit the nail on the dot as equivalent. The Idiom Quiz rejects those substitutions because each one was verified item by item against a primary Cambridge Dictionary entry and an independent Wiktionary entry. That double-source approach means every accepted answer reflects a real conventional form, not a friendly-sounding close.
The payoff is sharper feedback. If you complete a card correctly, you know you picked the conventional wording that appears in current reference dictionaries, not a regional variant or a folk etymology. If you get a card wrong, you know the right answer was specifically a verified form that the quiz expected. Two external Cambridge pages — for break the ice and hit the nail on the head — illustrate the kind of reference entries the build was anchored to. Knowing that the distractor "break the glass" was deliberately rejected because the dictionary form is "break the ice" makes a wrong answer feel more diagnostic than arbitrary.
Controls and What the Page Will Not Reveal
The interface is built around one consistent four-choice interaction. Touch and pointer users receive large answer rows and a full-width submit button, each at least 44 pixels high. Options collapse into one column on narrow screens and expand to two columns when space permits, with breakable text and no forced page overflow. Keyboard users can move the highlighted option with arrow keys, select with keys 1 through 4 or Space, and submit the highlighted choice with Enter.
What the page will not do is just as important as what it will. The current choices carry neutral labels and a selection state only; there is no answer data attribute, hidden explanation, correct class, or answer-bearing ARIA description attached before grading. For a completion card, its meaning is not rendered before submission. For a meaning card, all four meanings appear as choices, but none is identified as correct. The quiz also runs entirely in the browser, so no response leaves your device, no account is required, no gameplay API is called, and no external asset or new package is loaded. The runtime keeps quiz logic separate from presentation through a pure reducer that owns selection, cursor movement, scoring, error signatures, round progression, terminal freezing, and the post-answer reveal.
Scoring, Error Handling, and the 1,000-Point Finish
The scoring formula is straightforward: 200 points per correct card, five cards per run, 200 × 5 = 1,000 points for a perfect finish. The reducer awards points and advances the round immediately on a correct submission, so there is no delay between answering and seeing the next card. A local best score may be tracked between sessions, but the run itself produces a single deterministic total.
Error handling is deterministic and recoverable. A wrong signature combines the round number with the selected option. Submitting the identical wrong selection again is treated as an atomic no-op, so a double click does not consume the run. A second different wrong signature ends the run until you press Restart. Invalid option indexes, fractional indexes, submitting with no selection, and any action after completion or deadlock all preserve the current state rather than corrupting it. Restart returns the quiz to the first card with zero score and no stored errors, ready for another attempt at the exact 1,000-point finish. Focused tests execute the complete five-answer route, exact scoring, repeated-error deduplication, second-error deadlock, invalid input guards, Restart, and terminal no-ops, so the published behavior is the verified behavior, not an aspiration.