ToolBark
Generators

List Randomizer

Shuffle any list instantly with cryptographic randomness

Input

10 items detected

About

Need to randomize a list of names, items, or tasks? This free list randomizer lets you paste any list and shuffle it instantly using the Fisher-Yates algorithm powered by crypto.getRandomValues — the same source of randomness used in cryptography. Supports newline, comma, semicolon, and tab-delimited lists, with optional numbered output. No signup, no ads, works entirely in your browser.

FAQ
How random is the shuffle?+

It uses the Fisher-Yates algorithm with crypto.getRandomValues, which provides cryptographically secure randomness. This eliminates modulo bias and makes every permutation equally likely, unlike Math.random()-based shuffles.

What separators are supported?+

You can split your list by newlines (one item per line), commas, semicolons, or tabs. Pick the format that matches how your data is already formatted.

Is there a limit on list size?+

Yes — up to 10,000 items per shuffle. For most real-world use cases (team names, todo items, playlists) this is more than enough.

Can I shuffle the same list multiple times?+

Yes. After the first shuffle a 'Shuffle Again' button appears. Each click produces a fully independent cryptographic shuffle, and the tool tracks how many times you've shuffled.

Related tools