Something wrong with this tool?
About Random Choice Picker Online
This tool randomly picks one (or several) items from a list you provide. Enter your choices — names, restaurants, books, what-to-watch-next — and the tool returns a single random selection (or a shuffled subset).
Random pickers are useful for fair decision-making when consensus is impossible (where to eat with friends, which task to tackle first, who goes next in a game), for random drawing of winners from a list of entries, or for spicing up creative work with unexpected prompts.
All selections use cryptographically secure randomness, so each option has an exactly equal chance of being chosen — much fairer than mental "random" picking, which is heavily biased by recency and familiarity.
How to use this tool
How to pick a random option from a list
List your choices
Paste options into the "Choices (one per line)" field, one per line. Empty lines and whitespace-only lines are dropped — only non-blank trimmed lines are eligible.
Press Run
Result returns `picked` (the chosen line) and `pool` (how many lines were eligible after trimming). An empty pool throws "Provide at least one choice."
Randomness source
The tool uses `Math.random()`, which is fine for trivia and tie-breakers but NOT cryptographically secure. For raffles or anything money-related, use crypto-strength randomness elsewhere.
Not a shuffle
Each run is independent — running the tool twice could pick the same option two runs in a row. To draw without replacement you'd need to remove the picked line and re-run.