Word Data

How Many Words Can You Actually Make From 7 Random Letters?

By Lucian — builder & engineer, LK Forge

Stare at a jumble of seven letters and it can feel like there is nothing there — or everything. So we settled it: we drew 20,000 random Scrabble racks and ran each through the exact engine our Word Unscrambler uses, counting every valid word hiding inside. The average rack holds 50 words. But whether you get 16 or 94 is decided almost entirely by one thing — and a true 7-letter bingo is rarer than you would guess.

 ·  6 min read  ·  every number from a re-runnable headless benchmark

50
words from an average 7-tile rack (median 43)
7.3%
of racks can play a 7-letter bingo
278
words from the richest rack, AEILRST
3
vowels in the highest-yielding racks

How we measured it

The dictionary is the one the tool actually searches: ENABLE, a free, openly-licensed list of 172,835 English words, loaded straight from the shipped wordlist.js. For each rack we count a word if it is at least two letters long and can be spelled from a subset of the tiles you hold — honouring how many of each letter you have. That is exactly the rule the unscrambler applies when it lists what you can make; we just ran it a few hundred thousand times instead of once.

Racks are dealt without replacement from the real 98-tile Scrabble bag (its true letter mix — twelve E’s, one Q — blank tiles set aside), using a seeded generator so the run is re-runnable. The primary 7-tile figures come from 20,000 racks; the rack-size sweep uses 6,000 racks at each size from 3 to 8. Re-running the whole thing under a different seed moved the headline averages by about 0.2 words, so these are stable distributions, not a lucky deal.

Every extra tile roughly doubles your options

Word yield grows far faster than the rack does. Three tiles make about 3 words; four make 7; by seven tiles you are at 51, and an eighth tile pushes it to 84. Each added letter multiplies the subsets you can draw from, so the count climbs super-linearly — roughly 1.7× per tile across this range.

2.7 3 tiles 6.8 4 tiles 14.8 5 tiles 28.6 6 tiles 50.8 7 tiles 83.8 8 tiles words lkforge.com

Mean words formable per rack, by rack size (6,000 racks each). The jump from 51 to 84 for one extra tile is why an eighth-letter opening in a word game is worth so much more than it looks.

It is almost all about the vowels

If you only remember one thing, remember this curve. Sort the same 7-tile racks by how many vowels they hold and the word count traces a clean hill: near-zero with no vowels, a peak at three vowels and four consonants (62 words), then a fall back toward nothing as vowels crowd out the consonants you need. Two, three or four vowels is the fertile band; anything outside it is a bad deal.

1.1 0 29.8 1 55.8 2 62.2 3 51.8 4 32.4 5 16 6 4.6 7 vowels in the 7-tile rack → lkforge.com

Mean words at rack size 7 by vowel count (20,000 racks). The three-vowel rack is the peak; a no-vowel rack averages barely one word.

Why a seven-letter bingo is rare

Fifty words in a rack sounds like a lot, but almost all of them are short. The longest word a random 7-tile rack could form was five letters at the median, and only 7.3% of racks held a word using all seven tiles — a bingo. That is the gap between having options and having a big play: you will nearly always find something, but a rack that spells one clean seven-letter word comes along about once every fourteen deals.

The exception proves the rule. The best rack in the whole run, AEILRST, made 278 words — roughly five times the average — because those seven tiles are the friendliest in the bag: three well-spread vowels and the high-frequency consonants R, S, T and L. Racks like it are why word players memorise the “bingo-prone” letter sets; our data just shows how far above the pack they sit.

Every number

Rack sizeMean wordsMedian90th pct
3 tiles 2.7 3 5
4 tiles 6.8 6 13
5 tiles 14.8 13 28
6 tiles 28.6 25 54
7 tiles 50.8 44 94
8 tiles 83.8 71 159

Measured 10 September 2026, ENABLE (172,835 words). Rack-size rows are 6,000 racks each; the 20,000-rack primary run puts the 7-tile average at 50.2 words (median 43, 10th–90th percentile 16–94), with 7.3% of racks holding a bingo and 1.0% making no word at all.

Reproduce it yourself

The word list is public and the test is a one-line subset check. Load the shipped wordlist.js, pull the ENABLE array out of it, and count what a rack can make.

import { readFileSync } from 'node:fs';

// wordlist.js downloaded from lkforge.com/js/wordunscrambler/
const src = readFileSync('wordlist.js', 'utf8');
const WORDS = src.match(/ENABLE_RAW\s*=\s*\(?\s*`([\s\S]*?)`/)[1]
  .split(/\s+/).filter(w => /^[a-z]{2,}$/.test(w));   // 172,835 words

// Can this rack spell this word? (subset of letters, honouring counts)
function canMake(word, rack) {
  const have = {...rack};
  for (const c of word) { if (!have[c]) return false; have[c]--; }
  return true;
}

// Count every ENABLE word formable from a rack of letters.
function countWords(letters) {
  const rack = {};
  for (const c of letters) rack[c] = (rack[c] || 0) + 1;
  return WORDS.filter(w => w.length <= letters.length && canMake(w, rack)).length;
}

console.log(countWords('aeilrst'));  // 278

Deal letters from the 98-tile Scrabble bag to reproduce the averages, or just type your own rack into the Word Unscrambler and watch it list the same words.

Unscramble your own letters

Type in your rack and the Word Unscrambler lists every word you can make, longest first — free, instant, and entirely in your browser.

Open the Word Unscrambler →
Share this X Facebook Reddit

Related reading

Common questions

How many words can you make from 7 random letters?

In our benchmark of 20,000 random Scrabble racks against the ENABLE word list, a 7-tile rack yields 50 valid words on average and 43 at the median — counting every word of two or more letters you can spell from a subset of the tiles. But the spread is enormous: the middle 80% of racks fall between about 16 and 94 words, and it comes down almost entirely to how many vowels you drew. The single richest rack in the run, AEILRST, made 278 different words.

What is the best rack of letters?

The highest-yielding racks pair three vowels with common consonants. AEILRST topped our run at 278 words — it is built entirely from the six most useful tiles (the vowels A, E, I and the consonants R, S, T, L, N recur in the top racks). More generally, racks with exactly three vowels and four consonants averaged 62 words, the peak of the whole distribution; too few vowels and you cannot form syllables, too many and you cannot form consonant clusters.

How often can you play a 7-letter bingo?

Only 7.3% of random 7-tile racks contain a 7-letter word using all seven tiles — a "bingo" in Scrabble. That is why bingos are prized: from a fresh random draw you can play one only about one time in fourteen, before any strategy about which tiles to keep. The average rack held 0.1 such words, and the longest word a rack could make was 5 letters at the median, not 7.

Why do some racks make almost no words?

Vowels. A rack with no vowels at all averaged just 1.1 words (only oddities like "cwm" or "nth" survive), and about 1% of random racks make no valid word whatsoever — almost always an all-consonant or all-vowel pile. The count climbs steeply as you add vowels, peaks at three, then falls again once vowels crowd out the consonants you need to end words.

What dictionary does this use?

ENABLE, a free, openly-licensed English word list of 172,835 words — the exact list the LK Forge Word Unscrambler validates against, and a common choice for open-source word games. It is not the copyrighted NASPA (TWL) or Collins (CSW) tournament lists, so a handful of obscure tournament words differ, but for "what can I make from these letters" the answers are the same words the tool returns.

How reliable are these numbers?

Every figure comes from the exact ENABLE list the tool ships, with the tool's own rule (a word counts if it is length two or more and formable from a subset of the rack). Racks are drawn from the real 98-tile Scrabble bag with a seeded generator, so the run is re-runnable — the primary numbers use 20,000 racks and the rack-size sweep 6,000 per size. Re-running under a different seed reproduced the headline averages within about 0.2 words.