About Random Picker
Six draws in one place — winner, shuffle, balanced teams, a number in a range, dice and a coin. Randomness comes from the browser's secure generator, which is what makes a prize draw defensible rather than merely arbitrary.
Draw a random winner from a list, shuffle entries into a new order, split people into balanced teams, generate a number in a range, roll dice or flip a coin. It is the fair, fuss-free way to run a giveaway, pick who goes first or settle a decision.
Paste names or numbers and let it choose impartially. For a public draw the property that matters is that the outcome cannot be predicted or steered — including by whoever is running it.
The randomness source is what separates a draw people accept from one they argue about. General-purpose random functions are computed from a seed, so anyone who learns the seed can reproduce every value the sequence will produce. A cryptographically secure generator draws from operating-system entropy, and the practical consequence is that the result cannot be predicted in advance or steered by whoever clicks the button — including you.
Fair shuffling is less obvious than it looks. The intuitive approach of repeatedly swapping random pairs does not produce every ordering with equal probability, and a well-known one-line sort using a random comparator is measurably biased toward leaving items near where they started. A correct shuffle walks the list once, swapping each position with a randomly chosen earlier one, which is the only method that gives every arrangement the same chance.
Common use cases
- Running a giveaway or prize draw where entrants need to believe the result was not steered.
- Teachers picking a student to answer, or splitting a class into working groups without the same pairings every time.
- Teams choosing who presents first, who takes an unpopular task, or the order of a retrospective.
- Game nights needing dice or a coin when the physical ones are missing.
- Settling any decision where the point is that nobody chose it.