Generators
Random Item Picker
Pick N random winners from a list - fair draw, no duplicates.
Items
Winners
Pick to draw random winners without replacement.
About this tool
Paste a list of names, options, or lines and pick a top N at random - default one winner. The draw is without replacement, so every position in the winners list is unique. Backed by window.crypto.getRandomValues with rejection sampling for an unbiased selection - useful for giveaways, standup pickers, team assignments, or any 'let random decide' moment. Nothing is uploaded; everything runs in your browser.
FAQs
Are the winners really random?
Yes - each draw uses window.crypto.getRandomValues with rejection sampling to avoid modulo bias, so every item has equal probability of being picked at every step.
Can the same item appear twice in the winners?
No - the tool picks without replacement. Once an item is drawn it is removed from the pool, so the winners list is always unique. If you enter duplicate lines they are treated as separate entries.
How are the items parsed?
One item per line. Blank lines are ignored and whitespace is trimmed. If you paste comma-separated text, split it into lines first.
Is anything saved?
No - the list and the draw live only in this browser tab. Refresh and both are gone.