Shuffle any list into a fair, random order — free, private, and cryptographically unbiased.
Add at least two items (one per line) to shuffle your list.
Our List Randomizer takes any list you paste in — names, tasks, songs, giveaway entries, reading assignments — and reorders it into a genuinely random sequence. Instead of dragging rows around or trusting your gut, you get an unbiased order in a single click. The shuffle runs entirely in your browser using the Web Cryptography API, so every possible arrangement is equally likely and nothing you type is ever sent to a server. Just enter one item per line, watch the live item count, press Shuffle, and copy the numbered result wherever you need it.
Turn random ideas into high-performing content. Try: Viral Topic Generator
Paste your list of entrants and shuffle it to establish a fair, defensible pick order. The first name after shuffling wins, with runners-up already queued behind them for backup draws.
Break out of the same predictable rotation. Drop in your tracks or albums and reshuffle to build a fresh listening order for a set, a party, or a study session.
Teachers, book clubs, and standup facilitators can randomize who reads or presents next, removing the awkward 'who wants to go first' and keeping participation equitable.
Turn a to-do list or chore list into a random running order so no single item is always tackled first, or fairly distribute duties among a group by shuffling the roster.
This tool uses the Fisher–Yates (Knuth) shuffle, the mathematically proven method for producing an unbiased permutation. Walking from the last item to the first, it swaps each element with a randomly chosen element at or before its position. Every one of the n! possible orderings is exactly equally likely. Crucially, the random index for each swap is drawn from window.crypto.getRandomValues using rejection sampling, which discards values that would otherwise introduce modulo bias — so no position is quietly favored the way a naive shuffle or a repeated Math.random sort would be.
Explore related generators and utilities on the platform.