Random Draft Order Generator
Settle who picks first without anyone accusing the commissioner. Add everyone in your league, open the envelopes, and the full draft order is revealed the way the real lottery does it — last pick first, so the race for the number one pick narrows in front of everybody. One fair, cryptographically random draw, and an order you can copy or save.
- A full order, not one name
- A fair, crypto-random draw
- Envelopes, not a wheel
Draft Order Generator
Who's drafting?
One name per line — managers, players, teams or team names. Everyone gets exactly one pick, and duplicates are dropped automatically. Up to 16.
Settle who picks first, in front of everybody
Every league has the same argument, and it is never really about the order — it is about whether the order was fair. So this tool does not just hand you a list. It draws the whole order with one cryptographically secure shuffle, then opens the envelopes backwards, last pick first, so the race for the number one pick narrows on screen while everyone watches. By the time two names are left, it is a straight fifty-fifty — and nobody has to take the commissioner's word for anything.
How the reveal works
Add your league. One name per line on the right — managers, players, teams, whoever is drafting. Up to 16, duplicates dropped automatically.
Open the envelopes. The full order is shuffled first, in one draw, before anything moves on screen.
Watch the field narrow. The last pick opens first. Every name that comes out is struck from the strip along the bottom — that shrinking row is everyone still alive for number one.
The last three get the ceremony. Early picks open in a quick montage; picks three, two and one get the full envelope treatment, because that is where the drama actually is.
Take the order with you. Copy it as text for the group chat, or save the whole board as an image.
Why not just spin a wheel ten times?
This is the question worth answering, because it is what most people try first. A wheel picks with replacement: every spin is independent, so spinning ten times for ten managers will hand you the same name twice and miss somebody entirely. The usual workaround is to delete each winner between spins — ten spins, nine deletions, and one miscount away from a re-draw.
A draft order is not ten separate picks. It is one permutation — a single arrangement of everybody, each appearing exactly once. That is what gets drawn here, in one shuffle, with nothing to administer and nothing to argue about afterwards.
A wheel, spun repeatedly
Repeats are possible on every spin. Someone has to remove winners by hand. Ten separate draws, ten chances to fumble the admin.
One shuffled order
Everyone appears exactly once, guaranteed by the method rather than by discipline. One draw, one result, posted on the board.
Running a snake draft
Most fantasy leagues snake: the order reverses every round, so whoever picks last in round one picks first in round two. The order you draw here is your round one order — read it top to bottom for odd rounds and bottom to top for even ones.
It is worth knowing what the first pick is actually worth. In a ten-team snake league, the manager who draws first picks 1st and 20th; the manager who draws last picks 10th and 11th — back-to-back, and much closer together. First overall is the best single asset in the draft, but the last slot is not the punishment it looks like. That trade-off is exactly why the order deserves a real draw rather than a handshake.
Where a draft order is the right tool
| Situation | What the order decides |
|---|---|
| Fantasy football | Round one pick order for the draft — the classic August and September argument |
| Fantasy basketball & baseball | The same job across every fantasy sport, any league size up to 16 |
| Board game night | Turn order, which matters a great deal in a game where going first is an advantage |
| Classroom & presentations | The running order for talks, readings or demos, with nobody feeling singled out |
| Tournaments | Seeding order, or the order teams choose sides and courts |
| Chores & rotas | Who takes which week, drawn once and posted so it is settled |
| Playground & pick-up games | Which captain drafts first, without the usual argument |
The common thread is that everyone genuinely wants the same slot and no ordering is more correct than another — which is exactly when a random draw is the honest answer rather than a cop-out.
How the draw is made fair
Cryptographic randomness
Every index comes from crypto.getRandomValues() with rejection sampling, so there is no modulo bias skewing the low positions.
A true Fisher–Yates shuffle
Each of the possible orders is equally likely. Verified over 200,000 shuffles — every name landed in every slot equally often.
Drawn before anything moves
The order is fixed the moment you press the button, so nothing in the animation can steer it.
The flicker never lies
As a card settles it cycles only through names still in play. It will never tease you with someone already posted to the board.
Pairs well with
- Team Generator — split everyone into balanced teams first, then draw the order the teams draft in.
- Random Name Picker — when you need one name out of a hat rather than a full order.
- Classroom Randomizer — for picking a single student, a subject or a class job.
- NFL Team Picker — assign everyone a random team once the order is settled.
Frequently asked questions
crypto.getRandomValues() with rejection sampling, so there is no modulo bias and every possible order is equally likely. The shuffle happens before the first envelope moves. Tested over 200,000 shuffles — every name landed in every position equally often.