Last updated: September 22, 2026
In the Classroom
Ask any teacher what goes wrong with "random" selection and you get the same two answers: the same confident students get called on, and the quiet ones go a whole term without speaking. The fix is not a different personality — it is removing the person who chooses.
The Random Name Picker takes the class roster and picks one name, and the option that matters most for teaching is "remove winner after pick": each name is taken out of the pool, so every student gets a turn before anyone repeats. Project it on the board — when students can see the pick happen, the outcome stops being something to argue about. It is the same tool for choosing presentation order, reading turns, or who answers next.
For group work, use the Random Group Maker. Paste the roster once, and it is remembered in your browser, so next week's reshuffle is one click instead of retyping 30 names. Group sizes stay within one person of each other, and the students who end up together are genuinely random rather than "whoever sits in the same row" — which is the reason most complaints about group work exist in the first place. Switch it to group size 2 for pair work, lab partners, or reading buddies.
Running a Giveaway or Raffle
A giveaway winner is not just a name — it is a name that survives being questioned. Entrants who did not win will look for a reason, and "the site picked it" is not an answer. The sequence below is what makes a draw defensible, and it takes about two minutes:
- Freeze the entry list first. Decide who is eligible and write it down (a screenshot of the comment thread or entry form is enough) before you draw. A fair draw on the wrong list is still unfair.
- State when the draw happens so people know when to look — and so "you drew before entries closed" cannot be raised later.
- Draw live and on screen with the Lucky Draw Winner Picker for multi-prize draws or the Name Picker for a single winner.
- Turn on remove-winner. Five prizes then means five different people instead of the same lucky entrant drawn twice.
- Keep the record. A screenshot or screen recording of the result is the thing you point at if a question arrives a week later.
One practical note: the draw is only part of it. Each platform has its own rules about giveaways — eligibility, disclosure, and what counts as a valid entry — so follow the rules of the platform you are running it on. This page only helps with the part people actually argue about: who won, and was it fair.
Teams, Workshops and Chores
Grouping is one of those tasks where the outcome is trivial and the process is not. A workshop facilitator splitting 24 people into four breakout rooms, a manager pairing up a team for code review, a flatmate group deciding whose turn it is to clean the kitchen — all of them need a split that nobody reads as a message.
The Random Group Maker keeps team sizes balanced to within one person, so you never defend a group of five against a group of two. In group size 2 mode it becomes a random pair generator for study buddies, code review pairs, or Secret Santa. And when the group has already formed and only needs to agree on what to do first, the Decision Wheel with the tasks as options ends the ordering debate in seconds.
Ending Small Arguments
"Where do you want to eat?" — "I don't mind, you pick." This loop is not indecision, it is everyone waiting for someone else to take responsibility for the choice. Put the candidates on the Decision Wheel and the decision stops belonging to anyone, which is exactly why it ends the conversation instead of restarting it.
The same pattern covers who drives, what to watch, which film for movie night, or who pays this time. A yes/no wheel handles the two-option version. And if the options are people rather than choices — who goes first in a board game, who picks the next restaurant — the Name Picker is the better fit.
Tabletop Games
Physical dice are still the best dice, but they are not available when you are playing online with friends in three different cities, when the d20 has rolled under the sofa for the third time, or when you are holding a game at 1 a.m. and everyone needs an initiative order.
The Dice Roller covers d4 through d20 with an on-screen roll that is easy to share over a video call. Each roll is drawn independently, so the previous result neither predicts nor influences the next one — the property that actually matters when a character's survival depends on it. For random NPC names, initiative order, or loot assignment, Name Picker with remove-winner works well as a draw pile.
Will the Result Hold Up?
This is the part that matters when a prize, a grade, or a fair turn is at stake — and it is worth knowing how to check it, because "it's random" is a claim, not evidence. Three properties decide whether a draw would survive being questioned, and all three are visible:
| What to check | Weak version | What to look for |
|---|---|---|
| Random source | Math.random() | crypto.getRandomValues() — the browser's cryptographic source |
| Repeat behaviour | Winner stays in the pool | Winner is removed, so nobody can win twice |
| When the result is decided | During the animation | Before it — so the spin can't be covering a fixed result |
The third row is the one people rarely think about and it matters most: if the winner is chosen while the wheel is still spinning, the animation could in principle be covering for a result that was already fixed. In the Name Picker the winner is computed first and the flashing is purely visual — you can watch the animation come to rest on the name that was already selected.
On the source row: Math.random() is a pseudo-random generator, fine for a game but not something to point at when a real prize is on the line, because its sequence is predictable in principle. crypto.getRandomValues() draws from your operating system's entropy pool — the same class of source used to generate encryption keys — and cannot be predicted from earlier outputs. Every picker, the dice, and the group maker on this page use it, and the group maker's shuffle is explicitly the Fisher-Yates method, the standard unbiased approach.
The other half of "holding up" is procedural, and it costs nothing: say the rules before the draw, draw where people can see, and keep a record. A transparent process with a modest random source beats an opaque process with a perfect one, because people can only trust what they can observe.
Just for Fun (and One Honest Note)
Four tools here exist for enjoyment rather than reliability. The Daily Fortune Cookie gives one fortune a day with lucky numbers and colours. The Aura Color Test asks six questions and returns a reflective read on your current mood and energy. The Gift Voucher Generator makes a custom voucher — "one home-cooked dinner", "a weekend of dog-sitting" — and downloads it as a PNG you can print or text, which is the fix for the fact that gift cards are usually the wrong amount for the right thing.
The Social Persona Generator builds one clean bio page you can link from every platform instead of rewriting a bio six times.
Two honest notes. First, the fortune and aura tools are entertainment, not prediction — they are not personality assessments and not health tools, and they are labelled as such. Second, the persona generator is the one tool on this page that saves what you type to our server, because that is what makes the link shareable; it is not indexed by search engines and not listed anywhere, but treat any link you share as something that could be forwarded. Everything else here — the pickers, dice, group maker, voucher, fortune and aura test — runs entirely in your browser.
Not sure where to begin? Teachers usually start with the Name Picker; giveaway hosts with the Lucky Draw; anyone splitting people up with the Group Maker; and everyone else with the Decision Wheel.
Sources: MDN Web Docs (Crypto.getRandomValues, Math.random), W3C Web Cryptography API specification, NIST SP 800-90A (Recommendation for Random Number Generation), Fisher & Yates (1938). Giveaway eligibility and disclosure rules vary by platform and jurisdiction — check the rules of the platform you are running your draw on. The fortune and aura tools are entertainment only.