Tested tool guide
Tested browser tools
Checked August 16, 2026
What Random Name Picker does, with a checked example
Type or paste a list of names and this tool picks one or more of them at random - a digital raffle where everyone's names go in, you press the button, and a spinning animation runs through the list before stopping on a winner. An elimination-round mode removes each winner before the next draw, so a roster can be worked through person by person. What most people get wrong: the animation is show, not lottery. The outcome is a random selection, and timing your click changes nothing. And without elimination mode, randomness has no memory - the same name can win twice in a row.
Worked example
A concrete input and expected output from the current implementation.
Input
Ava
Ben
Cleo
Dev
(winners: 2, mode: elimination)
->
Expected output
Winner 1: one of Ava, Ben, Cleo, Dev
Winner 2: one of the three names that were not drawn first
The first draw selects at random from all four names. Because elimination mode removes each winner before the next draw, the second pick comes from the remaining three, so the two winners are always different names and always members of your list, even though which names win is random.