Three random words, on demand.
Random word generator
Words per press
3
Drawn from a built-in list โ nothing is fetched
Five words and a prompt
WeeklyFive drawn words and one instruction, every Monday. For writers, teachers and anyone who runs a games night.
Try also
How does a random word generator work?
It draws words from a fixed list held inside the page, using your browser’s cryptographic random generator to pick the positions. Nothing is fetched from a server and no dictionary is downloaded โ the words ship with the page, which is why results appear instantly and keep working with the connection off.
The kind filter narrows the pool to nouns, verbs or adjectives, and that choice matters more than it looks. Nouns are the drawable, actable, concrete things you want for pictionary and charades. Verbs are better for improvisation and warm-ups. Adjectives are the ones that pair badly with everything, which makes them excellent for writing prompts and terrible for a game with a timer running.
Ask for three words at once and you get the classic ideation trick: unrelated items forced into the same sentence. The generator will occasionally repeat a word across a draw, because each pick is independent โ draw again if a duplicate spoils the prompt.
Pick the filter to match the job, not the mood. The wrong part of speech is the usual reason a prompt lands flat.
| Setting | Best for | Why |
|---|---|---|
| 1 noun | Pictionary, hangman, spelling | Concrete and drawable |
| 1 verb | Charades, improv warm-ups | An action beats an object to mime |
| 3 any | Writing prompts, brainstorming | Forced connections between unrelated things |
| 3 adjectives | Character and tone exercises | Qualities without a subject attached |
| 5 any | Story-building games | Enough constraint to be difficult |
Two words is usually too easy and five is where a prompt starts feeling like homework. Three is the default for a reason: it is the smallest number that reliably produces a combination nobody at the table would have chosen.
To pick which player goes first, spin the random name picker; to set the running order for a whole group in one go, use the list randomizer.
Frequently asked questions
Where do the words come from?
A curated list built into the page, chosen for being common, concrete and safe to read out in a classroom. It is deliberately small and readable rather than a full dictionary, so you will not be handed obscure vocabulary or anything that needs a definition before the round can start. Nothing is loaded from an external service.
What is the difference between the noun, verb and adjective filters?
Nouns give you things โ draw them, mime them, describe them โ which is what party games need. Verbs give actions, which suit improvisation, warm-ups and charades. Adjectives give qualities, which are almost impossible to draw and unusually good at unlocking a stuck piece of writing. Leave the filter on any and you get a mix.
Can I use it for pictionary or charades?
It is one of the best uses. Set the count to one, choose nouns for drawing and verbs for miming, and hand the phone to the person whose turn it is. Because nothing is stored, the previous word disappears the moment you draw again โ which is exactly the behaviour you want when the next player is watching over your shoulder.
Are these good passwords or passphrases?
Not on their own. Passphrase strength comes from the size of the word list and the number of words: a standard diceware list holds 7,776 words and contributes about 12.9 bits of entropy per word, so five or six words are needed for a serious passphrase. This list is far smaller, so treat its output as raw material and use a dedicated passphrase tool for anything real.
Will it ever give me the same word twice?
It can, since each word is drawn independently from the full pool. Over a long game a repeat is not a malfunction โ it is what independent draws do. If a duplicate appears in a three-word prompt, draw again; if you want a guaranteed set of different items, put your own list into the list randomizer instead.
Can I add my own words?
Not on this page โ the list is fixed so that results are consistent and nothing has to be loaded. For your own vocabulary, paste it into the random name picker and spin, or into the list randomizer to shuffle the lot into an order. Both carry your list in the page address, so a custom word set can be bookmarked and shared.
How the randomness works
crypto.getRandomValues and maps it onto the size of the filtered pool using rejection
sampling, so every word in the pool is equally likely and none of the earlier entries are favoured
by a modulo shortcut. Picks within a draw are independent, which is why the same word can appear
twice. Nothing is requested from a network, nothing is stored between draws, and no record is kept
of any word the generator has produced.Worked example
With Kind of word Any word, How many words 3, this page works out 3. Drawn from a built-in list โ nothing is fetched
Sources:
Why the awkward word is the useful one
Random words are a creativity tool with an actual mechanism behind them. Left alone, a stuck brain keeps searching the same small region of its own associations; an unrelated word forces a jump to a region it would never have chosen. That is why the technique turns up in brainstorming methods, improv warm-ups and half the writing exercises ever set.
The practical trick is to resist judging the word. The instinct on seeing kettle when you were planning a thriller is to draw again until something suitably dramatic appears โ which reintroduces exactly the preference the random draw was there to bypass. Take the first word and force the connection; the awkward ones do the most work.
For games, the opposite rule applies. Redrawing is free and a bad prompt wastes a turn, so agree that anyone can pass once per round and move on.