Randomize any list with Fisher-Yates algorithm
The Fisher-Yates shuffle creates unbiased random permutations. It iterates from the last element to the first, swapping each element with a random earlier element. This ensures every possible ordering is equally likely.
Yes, Fisher-Yates provides perfect randomness with uniform distribution. Every possible permutation has equal probability.
Any text items work. Perfect for contest entries, raffles, or randomizing test data.