By Haru · Updated · 2026-08-29
Random Picker or Number Draw — Which Is Fairer?
A spinning wheel and a plain number draw feel like the same thing with different decoration. They are not. One of them asks you to type every name; the other asks you to number them first. One shows a result that looks earned; the other shows a result that looks arbitrary. Which you want depends on who is watching and what happens to the person who is picked.
This page is for the moment before you open a tool, not after. It covers what actually differs between the two, when a repeat pick is correct and when it is a bug, what "random" means in a browser, and the one category of draw where no web tool should be the deciding step.
The wheel and the number draw solve different problems
A wheel takes a list of labels and lands on one. That is its whole job, and it does it well when the list is short, the labels are meaningful to the people watching, and everyone is in the same room or on the same call. Seeing your own name go past is what makes the result feel decided rather than announced.
A number draw takes a range and returns numbers inside it. Nobody has to type thirty names. You number the list once — a spreadsheet row, a ticket stub, an order of entry — and draw against the numbers. That is the better shape when the list is long, when the names are private, or when the same list will be drawn from more than once.
The practical test: if typing the labels is more work than numbering them, the wheel has already lost.
One winner or several, and whether repeats are allowed
Drawing three winners is not the same as drawing three times. If the same name can come up twice, you are drawing with replacement, and for three winners that is almost never what you meant. Most wheels repeat by default unless you remove the name after each spin, and removing it by hand between spins is exactly where public draws go wrong.
A number draw usually offers the choice outright: several numbers at once, with duplicates allowed or not. Decide before you draw, because the difference is visible only when a repeat actually happens, and by then somebody has already seen it.
Where repeats are correct: rolling for a game, picking a warm-up question, choosing who speaks next in a meeting that runs every week. Where they are not: prizes, shifts, seats, anything one person can only receive once.
Is the result actually random?
Two different things get called random and only one of them matters here. The animation is not the draw. A wheel picks its answer first and then spins to land on it, so the speed and the sound are decoration. That is not dishonest, but it does mean a slow dramatic spin proves nothing about fairness. Ours draws from crypto.getRandomValues, the browser’s cryptographic random source. It also discards the values that would tilt the result. Reducing a 32-bit number with a remainder makes the low end come up slightly more often, so anything above the last clean multiple is drawn again.
What matters is the number underneath. Browsers provide a source of random numbers, and the common mistake is not the source but what is done with it: squeezing a wide random value into a small range with a remainder leaves the first few outcomes very slightly more likely than the rest. The bias is small and it is real, and the fix — discarding the values that would land in the uneven leftover and drawing again — costs nothing. Our own number draw does that, which is why it can occasionally take two tries internally for one visible result.
For a raffle among friends the bias would never have been noticed. The reason to care is that it is free to remove.
Looking fair and being fair are separate problems
A draw has two audiences: the person who runs it and the people who have to accept the outcome. Tools solve the first problem and only partly solve the second.
What actually helps the second audience is boring and procedural. Fix the list before drawing and show it. State how many will be drawn and whether repeats are possible, in advance. Draw once, on screen, with the screen shared or recorded. Do not draw again because the first result was awkward — a second draw with no announced reason destroys more trust than an unpopular winner ever does.
None of that is a feature of any tool. It is a script you follow, and it works with a wheel, a number draw, or slips of paper in a bowl.
Where the list of names goes
Typing a list of real people into a website is a data decision, not just a convenience. Most picker sites run in the browser, but some save lists to an account so they can be reused, and a saved list of customers, students or staff is personal data sitting on somebody else's server.
Two habits remove most of the question. Draw against numbers instead of names when the list is sensitive, so the tool never sees who anyone is. And prefer a tool that needs no account for a one-off draw — an account exists to keep something, and a draw you run once has nothing worth keeping.
Our number draw asks for a range and a count and nothing else. Nothing is stored, and nothing is sent anywhere.
The one kind of draw a web tool should not decide
Prize draws, giveaways and lotteries that are open to the public are regulated, and the rules differ by country: what must be published in advance, who may enter, whether a purchase can be required, what records must be kept, and sometimes who has to witness the draw. A picker on a website satisfies none of that, and the fact that the number came out fairly is not the part that is being checked.
The tool is still useful there — as the step that produces the number, inside a process that was written down first. If money, employment or a legal entitlement depends on the outcome, the process is the thing to get right, and the applicable rules are your own jurisdiction's, not a website's.
For deciding who buys lunch, none of this applies. Spin the wheel.
Frequently asked questions
Is a random picker free, and do I need an account?
Plenty are free without an account, including ours. Accounts appear where a site wants to save your lists between draws, which is genuinely useful for a teacher with the same class every week and pointless for a one-off. If a draw is happening once, there is nothing to save.
Is a wheel less fair than a plain number draw?
No, and the visible spin is not the reason either way. Both pick a value and then present it. The wheel becomes the weaker option when you have to remove names by hand between spins, because that is a manual step in front of an audience, and manual steps are where mistakes and suspicion both come from.
The same name came up twice. Is that broken?
Only if you asked for a draw without repeats. Genuine randomness produces repeats more often than people expect, so a repeat on its own proves nothing. Check the setting rather than the result: if duplicates were allowed, the tool did what you told it to.
How do I prove afterwards that the draw was real?
Show it happening rather than showing the result. A shared screen or a short recording that includes the full list, the settings and the single spin is far more convincing than a screenshot of a winner. Announce the number of winners and the repeat rule before you draw, because a rule stated afterwards always reads as an excuse.
Why not just use a spreadsheet formula?
A spreadsheet is fine and has one real advantage: the list is already in it. The disadvantages are that the formula usually recalculates every time the sheet changes, so the winner can quietly change after the fact, and nobody watching can see what the formula did. For a private draw a spreadsheet is enough; for a watched one it is the hardest option to show.
Can I use this for a public giveaway or prize draw?
For the numbers, yes. For the whole thing, no. Public prize draws are regulated and the rules differ by country, covering things a picker cannot supply: published terms, eligibility, records, and sometimes an independent witness. Write the process first, check your own jurisdiction's rules, and let the tool produce the number inside it.