Random Choice Generator
Click Randomise
Part of Random generators
Random choice generator: pick from your own list
A random choice generator selects one item from a list you provide—team names, lunch options, backlog tickets, or classroom volunteers. Paste or type options, generate, and copy the winner.
It is a decision helper, not a cryptographic drawing system. For numeric ranges only, use the random number generator instead.
How to use this converter
- Enter one option per line (or follow the on-page field format).
- Remove blanks and duplicates if you want a clean pool.
- Generate a random pick.
- Copy the result or generate again for a new draw.
Before and after examples
| Original | Converted | Notes |
|---|---|---|
| Alex\nSam\nJordan | One name drawn | Classroom volunteer |
| Ship A\nShip B\nShip C | One experiment lane | Team icebreaker |
When a list picker beats a number range
Mapping “1 = pizza, 2 = tacos” onto a number generator is error-prone. A choice tool keeps labels human-readable and avoids off-by-one mistakes when the list changes.
Product teams use it for lightweight prioritization icebreakers; teachers use it for fair volunteer selection when every name should have a chance.
Duplicates, blanks, and bias
Duplicate lines increase that option’s odds. Empty lines can become phantom choices depending on parsing—trim the list first. Each click is an independent draw; previous winners are not automatically removed.
Frequently asked questions
Can I draw without replacement?
Remove the winner from the list manually before the next draw, or shuffle offline if you need a full random order.
Is there a limit on list size?
Short lists work best in the browser UI. Extremely large lists belong in a spreadsheet or script.
Are picks weighted?
Only by how often a line appears. There is no separate weight field—duplicate an option to raise its chance.