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.
Flip a virtual coin for a fair heads-or-tails call, backed by your browser's secure random generator. Dice, a name picker and a team maker are in the same tool.
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
- Settling a decision between two equally good options
- Deciding who goes first in a game or debate
- Demonstrating probability and independent events to a class