🎮 How to Play
- Unscramble the jumbled letters to find the original word.
- Type the answer - instant check. Correct = +10 points.
- Skip = -1 point. Beat the 60-second timer for the highest score.
About this tool
Letter-jumble game. The same letters are presented in random order - you have to figure out the original word. Each correct answer = +10 points and increases your streak. Skip = -1 point.
About word scramble puzzles
A word scramble presents the letters of a target word in random order and asks the solver to reconstruct the original. The puzzle is one of the oldest published word games: scrambled-word columns appeared in American newspapers from the 1920s, and the modern format reached mass audiences through Jumble (debuted 1954, now syndicated in more than 600 papers) and digital descendants like Wordscapes and Words With Friends.
Scramble play exercises both vocabulary recall and pattern recognition. Neuroscience research (Heathcote and Brown, 2012) shows that scramble puzzles activate the same left-hemisphere lexical retrieval network used in conversation, which is why crossword and scramble fans tend to perform better on verbal fluency tests as they age.
How it works
The generator picks a target word from a curated 50,000-word English dictionary, applies a uniform random permutation, and renders the scrambled letters. The solver types or arranges letters until the dictionary lookup confirms a match.
target = dictionary[random index]
scrambled = fisher_yates_shuffle(target.split(''))
permutations = n! where n = length of target
valid input = exact letter multiset match AND in dictionary
- Difficulty: tied to word length and rarity, not to scramble entropy.
- Anagrams: longer words often have multiple legal anagrams; the tool accepts any dictionary-valid anagram, not only the original.
- Timer: optional. Solvers under tournament rules get 30 to 60 seconds per puzzle.
Worked example: solving REKAS
Suppose the puzzle shows the scrambled letters R E K A S.
- Letter inventory: A, E, K, R, S. One vowel slot, four consonants.
- Common 5-letter endings: -AKER, -AKES, -ARES. Test against the inventory: AKES needs A, K, E, S, leaves R, fits.
- Prefix candidates: B-, M-, R-, W-. Only R is in the inventory, so RAKES is a strong candidate.
- Cross-check: RAKES uses each letter exactly once and is a valid English word (plural of RAKE).
- Alternative anagrams: SAKER (a falcon species), but rarer; SKEAR (Scrabble-valid spelling of a dialect verb).
Difficulty by word length
| Letters | Permutations | Typical anagrams | Difficulty |
|---|---|---|---|
| 3 | 6 | 1 to 2 | Trivial |
| 4 | 24 | 2 to 4 | Easy |
| 5 | 120 | 3 to 6 | Easy to medium |
| 6 | 720 | 4 to 8 | Medium |
| 7 | 5,040 | 5 to 12 | Hard |
| 8 | 40,320 | 6 to 20 | Hard |
| 9 | 362,880 | 8 to 25 | Expert |
| 10 | 3,628,800 | 10 to 40 | Expert plus |
Permutations count duplicates; with repeated letters (LETTER has two T and two E) the effective count drops to n! divided by the product of factorials of letter counts.
Letter frequency in English
If you draw a blank, lean on letter frequency. The top eight letters cover roughly 70 percent of all English text, so any scramble that draws disproportionately from this set has hundreds of legal anagrams. Conversely a scramble heavy with the rare set (J, Q, V, W, X, Y, Z) usually collapses to 1 or 2 candidates.
| Letter | English frequency | Strategy note |
|---|---|---|
| E | 12.7% | Try as vowel anchor first |
| T | 9.1% | Anchors TH, ST, AT |
| A | 8.2% | Pairs with N, T, R, S |
| O | 7.5% | Often middle vowel |
| I | 7.0% | Triggers ION, ING endings |
| Q | 0.10% | Always check for U next |
| Z | 0.07% | Likely at end (FIZZ) or doubled |
| X | 0.15% | Often follows E (EXTRA) |
Common pitfalls
- Hunting one answer. Many scrambles have multiple legal anagrams. PAPRE solves to PAPER and REPAP and PRAPE (only PAPER is real). Test each candidate.
- Forgetting plurals. Adding an S unlocks dozens of common nouns. Always scan for an S in the inventory before committing.
- Locking on a prefix. If the first letters do not yield a word in 10 seconds, swap them. Solvers fixate on the leftmost letter and waste 30 plus seconds per puzzle.
- Ignoring rare letters. Q, Z, J, X narrow the candidate list dramatically. Build around them first.
- Skipping the vowel count. One vowel typically caps you at 4 to 5 letter words. Three plus vowels open up longer roots.
- Penalty for slow first guess. Most published Jumble puzzles award full credit only for the first valid answer. Submit, then keep searching for higher-scoring anagrams.
Related tools
Frequently asked questions
What is the best strategy for unscrambling words?
Start by looking for common prefixes (un, re, pre, dis) and suffixes (ing, ed, ly, tion). Identify rare letters first: Q almost always pairs with U, X often follows E, and J usually starts the word. Group consonants into common pairs (th, st, ch, sh) and vowels into pairs (ea, ou, ai).
How many letters can a scrambled puzzle have?
Most published anagrams sit at 5 to 9 letters. Three or four-letter scrambles are too easy (just a handful of permutations); 10 plus letters explode combinatorially (3.6 million for 10 letters) and are usually given with a topic hint.
Is scramble play in Scrabble or Words With Friends legal?
Yes. Both games are essentially scramble puzzles with bonus tiles. The legal-word list is TWL06 in North America or SOWPODS internationally. Mainstream dictionaries accept any standard English word but reject proper nouns and most abbreviations.
How does the tool generate the scrambled letters?
It applies a Fisher to Yates shuffle to the letter array. Every permutation has equal probability. For an n-letter word, there are n! possible scrambles. The shuffle runs client-side in JavaScript and does not save the answer anywhere.
Why are some words easier to unscramble than others?
High-frequency English bigrams (TH, HE, IN, ER) and uncommon letter pairs (QU, ZZ) give the brain shortcuts. Words with rare letters like Q, Z, J, or X are easier in short form because there are fewer dictionary candidates that fit. Long words built from common letters are the hardest because more legal anagrams exist.
Sources
- Heathcote, A. and Brown, S. D. (2012). Cognitive aging in lexical retrieval. Psychonomic Bulletin.
- Tribune Content Agency. Jumble syndication history 2023 fact sheet.
- Hasbro (2024). Official Scrabble Players Dictionary, 7th edition.
