Random Picker Wheel
A picker wheel randomly selects one item from a list you provide — useful for giveaways, classroom name-picking, team assignments, or just deciding where to eat. Toolverge takes one option per line and picks a winner using the browser’s cryptographic random number generator, the same fairness guarantee as the dice roller and coin flip.
How it works
- Type or paste your options, one per line.
- Press Spin.
- Read the randomly picked option.
Formula Winner index = floor(random × number of options), using crypto.getRandomValues
Frequently asked questions
How many options can I enter?
As many lines as you like — at least 2 are required for a spin to be meaningful.
Is every option equally likely to be picked?
Yes — each line has an equal 1/n chance, with no weighting, using the same cryptographic randomness as the dice roller and coin flip.
Can I use this to pick a random name from a class list?
Yes — paste one name per line and spin. Duplicate a name on multiple lines to weight it more heavily if needed.
Does this remove an option after it’s picked?
No — the list stays the same between spins, so you can pick the same or a different winner each time, including repeats.
Is my list uploaded anywhere?
No. Everything runs locally in your browser.