Whenever fairness depends on order — who presents first, which task gets tackled first, what order raffle entries are read in — a genuinely random shuffle matters more than it might seem. Humans are notoriously bad at manually 'randomizing' a list; we tend to avoid putting the same item in the same spot twice and unconsciously spread similar items apart, which is not actually random at all.
Our list shuffler takes any list you paste in — names, tasks, teams, raffle entries, playlist tracks, anything — and reorders it using the Fisher-Yates shuffle, the standard computer-science algorithm for producing a truly unbiased random permutation. Every possible ordering of your list is equally likely to result, with no hidden bias toward keeping items near their original position.
Just paste your list (one item per line), click shuffle, and copy the new randomized order. It's the fastest reliable way to randomize a list of any size without doing it by hand.