Random Picker

No upload · runs in your browser
No pick yet
Entries
8
Unique
8
Odds each
1 in 8
Picks made
0

Names are picked on your device with Web Crypto, the list is never uploaded.

How it works

Random Name Picker: Draw Winners or Spin a Wheel

Paste a list of names, then draw winners or spin the wheel. The winner is chosen with your browser’s cryptographic random generator first, and the wheel is animated to land on it.

What this does
  • Reads up to 5,000 lines and draws as many as 500 winners in one press
  • No-repeats mode shuffles the pool, so an entry can win at most once per draw
  • Turn no-repeats off and every draw is independent, a name can come up twice
  • The wheel can strike the winner off the list after each spin
  • Recent picks stay listed twelve deep until you clear them
FAQ

The order of operations is what makes it honest. The winner is drawn first from crypto.getRandomValues, with the modulo bias rejected so every entry has the same odds, and only then is a rotation solved that parks that slice under the pointer, nudged off dead centre, but never far enough to leave its own slice. A wheel built the other way round, reporting whatever the animation happens to land on, is far easier to bias and cannot prove which slice was really under the pointer.

Keep going