export const prerender = true;
Shuffle any list of items into a random order instantly.
Is the shuffle truly random?
Yes. We use the Fisher-Yates shuffle algorithm powered by the browser's cryptographically secure random number generator, giving every item an equal chance to end up in any position.
Is there a limit to how many items I can shuffle?
You can shuffle up to 1,000 items at once. For most everyday use cases this is more than enough.
Can I shuffle the same list multiple times?
Absolutely. Click Shuffle as many times as you like — each time you'll get a completely new random order.