A misspelled words quiz tests whether you can both recognize an oddly formed English word and then produce its standard spelling from memory, and the Spelling Quiz at Lizely does this across exactly five rounds for a fixed total of 1,000 points. Each round shows four visible entries on the screen: three of them are real, indexed English words, and one is a deliberate misspelling. The quiz asks you to pick the misspelling first, then type its standard correction into a blank text field. Both steps have to be right before the round is counted, because recognizing that a form looks unusual and producing its correct letter sequence are two different skills. A run that gets all five rounds right finishes at 1,000 points; a run that ends after one distinct mistake can still recover, but a second different mistake locks the quiz until you press Restart. The fixture is fixed, the dictionary sources are named, and the whole thing runs locally in the browser, so you can repeat it to sharpen a small set of commonly confused spellings rather than to chase an adaptive assessment.

What a misspelled words quiz actually tests
Many online spelling tests stop at recognition. You see four options, you tap the one that looks right, and the round is over. That style rewards pattern-matching but skips the harder half of spelling: producing the correct letter sequence from memory once you have decided a word looks wrong. Spelling Quiz keeps both halves in the same place, because they fail in different ways. A person can spot that something is off in recieve without being able to type the i before e form on the first try, and a person who knows the rule can still hesitate on definately. By counting a round only when both the detection and the typed correction are right, the quiz records an outcome that maps to real writing habits rather than just visual hunches.
The five rounds are not adaptive. The fixture is pinned, the order of candidates is fixed, and the misspellings are drawn from the same small set of commonly confused English words that turn up in everyday writing. That is useful if you want a deterministic target: you can fail on round two, restart, and try again with the same questions. It is also useful if you want a tool that behaves the same for everyone, since adaptive difficulty is not the point.
How a single round is built
Every round in the quiz exposes four candidates as plain buttons. Three of those candidates are standard English words that exist as exact lemmas in the Princeton WordNet 3.1 index. The fourth candidate is the intended misspelling, and its form is absent from the same index. The corrected spelling is deliberately not included in the four candidates, so the detection stage cannot hand you the answer by sitting next to the wrong one. The correct slot for the misspelling rotates across all four positions across the five rounds rather than sitting in the same place each time, which keeps the test from being solved by always pressing the bottom-left button.
Once you confirm the misspelled candidate, the other three candidate buttons lock and a blank text input takes focus. That field is the second step: you type the standard form yourself, with no multiple-choice help. The comparison logic is narrow on purpose. The field trims leading and trailing whitespace, lowercases all letters, and then checks that the result is exactly one uninterrupted sequence of ASCII letters from a through z. Blank submissions, multiple words, apostrophes, hyphens, digits, accented characters, emoji, and other punctuation are rejected as a single atomic no-op, which means a correct answer buried inside extra text cannot slip through.
| Feature | Detection stage | Correction stage |
|---|---|---|
| Input type | Pick from four candidate buttons | Type one ASCII alphabetic word |
| Source of options | Three indexed WordNet lemmas plus one absent form | One verified standard correction not shown beside the misspelling |
| Normalization | Not applicable | Trim whitespace, lowercase, ASCII a–z only |
| What blocks scoring | Picking a correctly spelled candidate | Blank text, extra spaces, wrong letters, punctuation, accents |
| Points awarded | Counts only if the correction stage also passes | Counts only if the detection stage also passes |
How to play the five rounds to 1,000 points
- Open the quiz and read all four candidates on the first round without tapping anything yet. Note which one looks like a sound-alike, a doubled letter, a swapped pair, or an extra consonant.
- Use the arrow keys to move the highlight through the four entries; Enter selects the one the cursor is on. With touch or a pointer, tap the button that holds the misspelling.
- Watch the other three candidates lock and the blank correction field appear. Type the standard spelling as a single uninterrupted ASCII word; do not paste extra characters or spaces around it.
- Submit the correction. If both stages were correct, the score advances by exactly 200 points and the quiz moves to the next round. If the detection was right but the correction was wrong, you can retype and resubmit without losing the round.
- Repeat for rounds two through five. Each round awards 200 points only after both stages pass, so 200 × 5 = 1,000 is the fixed maximum on a clean run.
How the standard spellings are checked
The fixture is not built from guesses. During implementation, every standard correction and every correctly spelled distractor was located as an exact indexed lemma in the Princeton WordNet 3.1 dictionary data, and each intended misspelling was confirmed absent from that index. WordNet 3.1 is used as a primary machine-readable spelling reference rather than as a universal proof about every proper noun or inflection in English, but it is a consistent boundary for the common-word rounds in this quiz. Each of the five corrections was then cross-checked against the live Cambridge Dictionary; the exact entry URL returned HTTP 200, and the page contained the expected standard spelling. Combining the index check with current dictionary entries shrinks the chance of approving an invented form or a historical variant that does not match the modern standard the quiz targets.
Ten external golden cases record five accepted standard forms and five rejected misspellings, and a separate private round fixture pins the candidate order, the position of the unique misspelling, the absence of the correction, and the correct answer. Tests also check all three distractors against a fixed standard-word set, four-position coverage, exact normalization, the 200-point progression, deduplication of repeated selections, the shared second-error deadlock, invalid-input atomicity, terminal freeze, and Restart behavior. These checks only support the spelling claims; the round order, interface, scoring, and error policy are product decisions, not derived from a corpus.
Controls, accessibility, and the boss key
The widget is built to be reached by mouse, finger, and key. Candidate buttons are native HTML elements with a minimum height greater than 44 pixels, so they remain easy to hit on a touch device, and their text wraps inside the control rather than spilling out. The mobile layout sits in one bounded column and grows to two columns on wider screens, and minimum-width protection plus overflow containment stop long entries from forcing the page to scroll sideways. Keyboard play covers both stages: the arrow keys move the detection cursor through the four entries and wrap at the ends, Enter selects the highlighted entry, and once the misspelling is chosen, focus can shift to the native text input where Enter submits the correction. A global shortcut listens for Enter but ignores presses that originate inside a button or input, so the same key does not double-submit.
The shared GameShell also stores the best completed score in local browser storage when storage is available, and it carries two extras that come in handy at a desk: Restart and a double-Escape boss key. Press Escape twice within the timing window and the quiz is replaced with a neutral spreadsheet-like cover; press Escape twice again and the quiz returns. Boss mode does not touch the chosen entry, the typed correction, the recorded errors, or the score, so it is purely a visual cover.
Scoring, error recovery, and Restart
A round only awards its 200 points when both stages are correct, and a perfect run across all five rounds lands at exactly 1,000 points. The error policy is the same for detection and correction mistakes, and it is deterministic. Selecting a correctly spelled candidate records a signature that includes the round and the candidate index; submitting a valid but wrong correction records the round and the normalized word. Repeating the identical selection, or submitting the same wrong correction with different case or surrounding spaces, does not add another error because the signature is already on file. That is why your first distinct mistake stays recoverable: you can re-select the right candidate or retype the correct word and the round moves forward. A second different mistake, however, deadlocks the run until Restart. Invalid candidate indices, fractional indices, unknown movement commands, and invalid correction formats are atomic no-ops that leave the score, the history, and the progression unchanged.
Restart is the clean reset. It restores round one, the first cursor position, no selection, a zero score, a blank input, and an empty error history. Completion and deadlock both freeze the game actions, so there is no chance of a button press slipping through at the end and changing the score. All detection and correction logic runs locally in the browser; typed text is not uploaded, no account is required, no paid service is called, and no package dependency is added.
Practical tips for clearing all five rounds
Read the four candidates as a set before committing. The misspellings in the fixture tend to come from familiar sound-alike traps, so two of the four candidates will often look obviously fine and one will look obviously wrong. The fourth candidate is the trap, which is why the corrected form is kept out of the four: it forces a real check rather than a side-by-side comparison. Use the arrow keys rather than racing to click, because a wrong tap on a correctly spelled candidate counts as your first distinct error and you only get one of those per run.
When you reach the correction field, type the word as if it were going into a search box. The normalization is strict: a single lowercase ASCII word with no surrounding whitespace, no punctuation, no apostrophes, no hyphens, no digits, and no accented letters. If you are unsure about a doubled consonant or an i before e choice, write the word out loud in your head before typing; the field will not autocomplete, and the comparison logic will not accept a near-miss. Finally, remember that a wrong correction costs you nothing if you catch it on the same round, since the same signature is already recorded. A second different mistake is the one that ends the run, so slow down on the round where you have already burned your one recoverable error.