How to Run a Fair Random Draw
Prepare a clean entry list, state rules in advance and preserve a useful result record.
Published · Reviewed
How to Run a Fair Random Draw
A fair draw needs a frozen eligible list, rules announced before selection, a suitable random method and a minimal result record. The picker can handle the random step, but the organizer remains responsible for eligibility, duplicates, timing and applicable promotion rules.
Recommended process
- Publish eligibility, duplicate and redraw rules.
- Freeze and count the final list before opening the picker.
- Run one draw under the agreed settings.
- Record winners, alternates, time and material settings without retaining unnecessary data.
Worked example
An event organizer closes entries at noon, exports the eligible IDs, removes exact duplicates under the published rule, announces the final count, and draws one winner plus two labelled alternates. The exported result is kept only as long as the event policy requires.
What to check before using the result
- Never add or remove entries after viewing a result.
- Use a witness or certified system when rules require one.
- Protect participant privacy in screenshots and exports.
How the random step is handled
Random Picker Tools uses window.crypto.getRandomValues() for browser-based selection. Integer results use rejection sampling to avoid modulo bias, and complete list orders use a Fisher–Yates shuffle. This addresses the software selection step; the organizer still controls eligibility, duplicate rules, consent, accessibility and any legal requirements.
Privacy note
Normal picking and shuffling happen in the browser. Use initials or non-sensitive identifiers when possible, avoid storing unnecessary source data, and create a share link only when temporary server storage is appropriate for the people represented in the list.