Skip to content

Shuffle a list randomly

Paste a list and get the same content in a completely random order.

Processed on your device. Nothing is sent to any server.

Paste a list and get the same content in a completely random order, with every permutation equally likely.

Applies the Fisher-Yates shuffle algorithm using the browser's cryptographic API, which guarantees every permutation is equally likely.

Use cases

  • Setting a random speaking order for a meeting.
  • Shuffling a list of exam questions.
  • Randomizing the order of a homemade playlist.

How it works

  1. 1

    Paste your list

    One item per line.

  2. 2

    Click Shuffle

    Copy the result with the new order.

Frequently asked questions

What shuffling algorithm does it use?
Fisher-Yates, the standard unbiased shuffling algorithm, combined with a cryptographically secure randomness source.
Random