Back to blog
guiderandom pickerrandom generatorrandomizerwheel of names

The Complete Guide to Random Pickers, Random Generators, and Online Selection Tools

A plain-English guide to random pickers, random generators, and online selection tools — what they actually do, how they differ, and which one to reach for when. Compares wheels, name pickers, number generators, and colour tools, all with live links.

Spin the Wheel TeamJuly 8, 2026

The internet is full of tools that claim to "pick something at random", and most of them do exactly what they say. Under the covers, though, they aren't all the same tool — a random picker, a random name picker, a random number generator, and a spin the wheel are four subtly different animals with different jobs. This is the plain-English guide to what each one does, when to reach for it, and where the overlap is.

If you just want to pick something right now, the random picker is the fastest option — paste anything in and spin. If you want to understand what's happening under the hood and choose the right tool for a specific job, keep reading.

What counts as a random picker?

A random picker, in the broadest sense, is any tool that takes a list of options, applies genuine randomness, and returns one of them. That definition covers a surprising number of very different-looking tools. What separates them isn't the maths — the maths under the hood is essentially the same — but the UX around it. A spin the wheel wraps the pick in a five-second animation and a winner dialog you can screenshot; a random number generator just prints the answer instantly. Both are "random pickers" in the strict sense. The right one for your moment depends on who else is in the room.

The rest of this guide walks through the five families of random selection tools you'll find on this site, explains when to reach for each, and covers the questions people ask most often about what "random" really means in a browser tab.

The five families of random selection tools

Almost every online random tool ever built falls into one of five archetypes:

General-purpose randomisers

The blank slate. Anything goes on the list. The random picker is the everyday version — paste your list, spin, get an answer. It doesn't care whether the entries are songs, restaurants, chores, or product names. Reach for it when you're picking from a list that doesn't fit into any of the more specialised families below.

Name pickers

Optimised for lists of people. Two tools live in this family: the wheel of names for a single visible pick from a list, and the random name picker for drawing multiple names in a row. Reading order, standup order, giveaway winners, group formation — anything where the list is people, this is the family you want.

Number and letter generators

Tightly-scoped tools that generate a specific type of answer. The number wheel is the fastest way to pick a number in a range (dice rolls, lottery numbers, random test cases, random maths starters). For themed number-picker moments — random bingo caller, random lottery pick, random letter for a spelling game — build one in a minute on the wheel generator.

Colour and category tools

Random pickers that return an answer from a fixed category. The color wheel is the built-in one — art class prompts, brand-palette warm-ups, colour-based ice-breaker games. Themed category randomisers for animals, countries, emojis, food, movies, or Pokemon are all one minute of setup on the wheel generator.

Decision spinners

Randomisers built specifically for the moment you're stuck between options. The decision wheel is the general one — put your options on it, spin, commit. The yes or no wheel is the binary case. Both are technically "random pickers" but the UX is tuned for the specific job of getting a decision out of a stuck head.

Popular random selection tools

Random picker vs wheel of names vs random name picker

These three names cause the most confusion, so it's worth being specific about the difference.

Random picker

The random picker is the general-purpose everyday tool. It doesn't care whether the list is people or things. Reach for it when you're on your phone in the kitchen picking a chore, or on your laptop picking which draft to work on next.

Wheel of names

The wheel of names is optimised for one visible pick from a list of people, in front of a room or a camera. The animation, the pointer, the winner dialog — all tuned for a spin that a class, an office, or a livestream audience can watch. Same underlying randomness as the random picker; the UX just makes the pick feel unarguable.

Random name picker

The random name picker is optimised for the moment when you want to draw one name out and then keep drawing more. Cold-call rotations, multi-winner giveaways, group formation. The remove-winner mode is the key feature — one spin removes the winner from the pool, so the next spin never picks the same person twice.

A one-line summary: random picker = pick anything, on your own; wheel of names = pick one person, on screen; random name picker = pick several people, in a row.

When to use each type

The decision tree for which random tool fits a given moment is easier than it looks.

You're picking a person

Single visible pick in front of an audience → wheel of names. Multiple picks in a row → random name picker. Pairing without self-draws → draw names. Solo pick from your kitchen phone → random picker works just as well.

You're picking a thing

Anything at all → random picker. If you're stuck between options and the ceremony of a spin will help you commit → decision wheel. If it's a binary → yes or no wheel.

You're picking a number

Number in a range → number wheel. A lottery number, a dice roll, a random test case index, a random starter question for a maths lesson — all live here. For a themed number pick (bingo caller, raffle-ticket picker, random maths problem generator) build one on the wheel generator.

You're picking a colour or category

Colour → color wheel. Themed category (animals, countries, food, emojis, movies) → build one on the wheel generator. Random letter for a spelling game or word-association warmup → same, thirty seconds of setup.

You're running a prize draw or raffle

Small-to-medium raffle in front of an audience → prize wheel. Large livestream giveaway → wheel spinner app. Multi-winner draw → random name picker in remove-winner mode.

What "random" actually means in a browser

The word "random" carries a lot of weight, especially when the pick is deciding who gets £500 in a giveaway or which student presents their coursework first. Two things are worth understanding about how random-selection tools actually work in a browser.

Real randomness vs "random-ish"

Modern browsers ship with two random-number APIs. Math.random is the everyday one; it's fine for game-of-life demos and shuffling animations but is technically pseudo-random and shouldn't be used when the outcome carries real stakes. crypto.getRandomValues is the cryptographic one — the same category of randomness browsers use for security. Well-built pickers use the cryptographic version so every entry has a genuinely equal shot on every spin. The longer, less technical explanation lives on how randomness works.

The pick happens before the animation

A wheel-based picker decides which slice will win before the animation starts, then eases the spin down to that pre-decided answer. A longer or slower spin doesn't change how random the outcome is — it just changes how the outcome feels. This is worth knowing because it also means the animation isn't a source of unfairness. Nobody watching can influence a wheel's outcome by pressing stop faster; the outcome was decided the instant the button was pressed.

Random picker vs random number generator

Both do exactly the same job at heart — take a range or a list, apply randomness, return a result. The difference is who's in the room.

A raw random number generator gives you the answer instantly with no ceremony. Zero milliseconds, no animation, no witness. If you're picking a test index for a script or a lottery-ticket number for yourself in private, it's the fastest tool possible.

A random picker wraps the same answer in a two-to-five-second spin that any human next to you can watch. That ceremony is the entire reason the tool exists. If there's a chance the result will be disputed — a giveaway winner, a classroom cold-call, a family decision — the animation is what makes the pick feel unarguable. When nobody's watching, use the RNG. When anyone else is in the room, use the picker.

Random picker vs coin flip vs dice roll

Coins, dice, and hats have been the analogue equivalents of a random picker for centuries. Each of them has one specific advantage over an online tool: physical presence. You can hand a coin to someone else and let them flip. You can pass dice around a table. That physical hand-off carries trust in a way a browser tab can't.

Everywhere else the online picker wins. A coin has only two sides, and the yes or no wheel can be spun a hundred times without ever getting lost between the sofa cushions. A dice caps out at 20 (or 100 with a d100), and the number wheel handles any range in seconds. A hat with folded paper strips works for a raffle, but a prize wheel lets a livestream audience watch the same draw from anywhere in the world.

Common uses that aren't wheels

A few random-selection jobs are worth mentioning even though they don't fit neatly into any of the wheel categories:

  • Random gift-exchange pairing. Not a pick, technically — it's a matching problem where nobody should draw themselves. Draw names is the specific tool.
  • Random winner from a list of hundreds. A wheel with 500 slices works mathematically but the individual slices are too thin to read. The random name picker is optimised for long lists.
  • Random subset from a bigger list. Draw 5 winners from a list of 200. Use the random name picker in remove-winner mode: pick one, remove them from the pool, pick the next.
  • Random pairing for pair programming or peer review. Same tool as Secret Santa: draw names prevents self-pairing.

Privacy — what happens to the list you paste in?

Every random tool on this site runs entirely in your browser. Entries you type or paste live in the browser session and disappear when you close the tab. Nothing is uploaded to a server, nothing is stored in an account.

This has practical consequences worth knowing:

  • You can paste real names. Class rosters, customer lists, giveaway entrants — none of it leaves your browser session.
  • Closing the tab clears the list. Bookmark the URL after you customise a wheel; the setup rides along in the URL so the next open loads it identically.
  • There's nothing to "delete" from us. Because nothing was uploaded, there's nothing to remove later.

Building your own randomiser

Every random tool listed above comes preloaded with a sensible starting list, but the whole point is that you pick the entries. The wheel generator is the blank slate: start with nothing, type your options, tweak the palette, and save the result.

A few small customisations that make a wheel dramatically more useful:

  • Weight entries above 1 to give some options better odds. Their slices become proportionally wider — anyone watching can see the weight, so nobody feels tricked.
  • Turn on remove-winner mode for group formation, multi-winner draws, or any moment where you don't want the same result twice.
  • Shuffle before each spin if you don't want the position of a slice to hint at the result. Useful for genuinely blind picks.
  • Turn off the tick sound if you're spinning in a library, an office, or on a stream where you're talking over the animation.

Frequently asked questions

Is a spin the wheel actually random?

Yes. A properly-built spin the wheel uses a cryptographic random source built into the browser, and the winning slice is decided the moment you press the button. The animation is theatre. The long explanation lives on how randomness works.

What's the difference between a random picker and a randomiser?

None — the words are interchangeable. Both refer to any tool that takes a list of options and returns one at random.

Can I use a random picker for a legally-binding draw?

You can, but do the draw in the open. Screen-share it. Stream it. Post a video of it. A random pick that no third party witnessed is legally the same as a decision you made by yourself, whatever the tool. What makes the draw trustworthy is the visibility, not the tool.

How many entries can a random picker handle?

Comfortably into the hundreds. Past ~200 entries a wheel-based picker becomes hard to read (the slices go thin), but the maths still picks correctly. For draws in the thousands, the random name picker is optimised for long lists.

Can I generate a random letter or country or emoji?

Yes — build a themed picker in about a minute on the wheel generator. Add your letters, countries, or emojis, save the URL as a bookmark, and it's a one-tap tool from then on.

Which random tool is best for a classroom?

The classroom wheel is built for it — projector-friendly, one big button, keeps recent picks visible. The wheel of names is the close cousin for reading order or group formation.

Which random tool is best for a Twitch giveaway?

The wheel spinner app for the polished livestream look, or the prize wheel for a bolder carnival feel. Both work on any streaming setup that can capture a browser window.

Where to start

If you have a list and want it randomised right now, the random picker is the shortest path. If the list is people, use the wheel of names. If it's a number, use the number wheel. If none of the specialised tools fit, the wheel generator is a minute of setup.

To see every random-selection tool the site offers in one place, browse the wheel gallery. Whichever tool you land on, the underlying randomness is the same — the difference is in the UX around it, and matching the tool to the moment is what makes the pick feel unarguable.