Free List Randomizer — Shuffle Lists, Randomize Names, Pick Winners
Items & Options
Results
0 itemsTip: Ctrl/Cmd + Enter shuffles again using the same options.
About List Randomization, Fairness, and Reproducibility
List randomization is the process of taking an ordered list of items and producing a new order where each item’s position is determined at random. This tool uses the well-known Fisher–Yates shuffle (also called the Knuth shuffle), which walks the list from end to start and swaps each element with a uniformly chosen earlier element (or itself). When paired with a uniform random number generator, Fisher–Yates yields an unbiased permutation: every possible ordering is equally likely.
What does “seeded” mean? A seed is a number that initializes the random number generator. Using the same input list and the same seed will always produce the same shuffled output. This is useful for audits, contests, classroom demos, and research workflows where you need to prove how the result was produced. Share the seed alongside your winners so others can independently verify the outcome.
Picking N winners vs. shuffling everything. If you only need a subset (for example, five prize winners from 1,000 entries), this tool shuffles the entire list once and then takes the first N items. That approach is equivalent to drawing without replacement and keeps selection probabilities fair.
Handling duplicates. Real-world lists often contain repeated names or IDs. You can choose to remove duplicates before shuffling (giving each unique item one ticket) or keep duplicates (giving repeated entries multiple tickets). Decide which option matches your rules and disclose it up front to avoid confusion.
Privacy and performance. Everything runs locally in your browser. No uploads are required, so sensitive lists (participants, emails, internal IDs) remain on your device. The algorithm is linear time—O(n)
—and scales well to large lists, limited mainly by your browser’s memory.
Is this cryptographically secure? No. The default browser RNG and the optional seeded PRNG here are designed for fairness and reproducibility, not for cryptographic secrecy. For security-critical draws (e.g., lotteries regulated by law), use a certified, audited process and publish your methodology.
Best practices for transparent draws
- Publish the exact input list (or a hashed version), the seed value, and the time of the draw.
- State whether you removed duplicates and how you handled invalid entries.
- If eligibility rules apply, filter the list before shuffling and keep an audit log.
- For very large lists, consider archiving the inputs and outputs so others can reproduce the result later.
Common uses: prize drawings, assigning presentation order, generating randomized teams or brackets, sampling rows from a dataset, and creating unbiased A/B testing sequences. Whatever the use case, a transparent process plus a reproducible seed makes it easy for others to verify your results.