Generators

Random name picker

Paste a list of participants (one per line), set how many winners you want and let chance decide. The draw uses the browser's cryptographic generator to guarantee randomness.

Winner

A genuinely random draw

The list of participants is shuffled with the Fisher-Yates algorithm fed by crypto.getRandomValues, the browser's cryptographic random-number generator. It is the same kind of randomness used in computer security, with no bias or predictable patterns.

It is handy for Instagram giveaways among comments (paste the names), office raffles, choosing who goes first in a game or sharing out tasks. The names are not sent to any server: if you reload the page, they disappear.

Advertisement
Advertisement