Random List Picker
Random List Picker name picker random choice raffle picker draw namesHow to use Random List Picker
Enter one candidate per line, choose how many results you need, and select Pick randomly. Each line position is treated as an entry; duplicate text remains eligible more than once.
How random selection works
Each nonblank line becomes one candidate position. The browser obtains random 32-bit values through crypto.getRandomValues(). Rejection sampling removes values that would create modulo bias, then the selected position is removed from the pool. Removing it means one position cannot be chosen twice in the same draw.
Worked example
Enter Alpha, Beta, Gamma, and Delta on separate lines and request two picks. The tool creates a four-position pool, selects one secure random position, removes it, and selects again from the remaining three. The result may be Beta and Delta, for example. Repeating the draw starts again with the full original list.
Duplicate text and selection odds
Identical text on two lines represents two positions and therefore receives two opportunities to be selected. This is useful when repeated entries intentionally represent weighting. If each person or option should have equal odds, remove accidental duplicate lines before drawing.
Without-replacement assumptions
Selections within one draw are made without replacement, so the requested count cannot exceed the number of nonblank lines. Whitespace around a line is trimmed. Empty lines are ignored. The tool does not automatically split comma-separated text because commas may legitimately belong inside an entry.
Privacy and delivery limits
The list and draw remain in this browser and are not submitted to Awesome Tools. The page does not store a draw record, timestamp it through an independent service, or prove what list existed before selection. Refreshing the page can remove the current state.
Fairness and regulated uses
Cryptographically secure browser randomness is stronger than Math.random() for casual selection, but fairness also depends on accurate entry data, published eligibility rules, and a trustworthy process. Do not use this page as the sole audit mechanism for regulated lotteries, legal drawings, high-value promotions, or any process requiring independent certification.
Random List Picker FAQ
Can one entry be picked twice?
Not during the same draw unless identical text occupies multiple input lines.
Does entry order change the odds?
No. Every line position has the same probability.
Can I paste names separated by commas?
Place each candidate on its own line. Commas remain part of a line’s text.