Random picker and team generator
Pick a winner from a list, split into teams, or generate a random order.
How it works
Paste a list of names or items and pick one at random, draw several without repeats, split into teams, or shuffle into a running order.
Team splitting deals round-robin from a shuffled list rather than filling one team then the next, which keeps sizes even when the count does not divide cleanly. With seven people and three teams you get 3-2-2, and which team gets the extra is itself random rather than always the first.
The shuffle is Fisher–Yates driven by the cryptographic random number generator. Sorting with a random comparator — the obvious approach — produces measurably biased orderings, which matters if you are using this to decide anything.
Genuinely random results contain runs and clusters. The same name appearing twice in consecutive draws is expected, not evidence of a broken generator.
This tool runs entirely in your browser. Nothing you enter is sent to a server, logged or stored, and the page keeps working with the network disconnected.
Common questions
- Is this fair for a prize draw?
- It uses the browser’s cryptographic random number generator with an unbiased shuffle, so every ordering is equally likely. It is not auditable by a third party, which is a different requirement.
- How are uneven teams handled?
- By dealing round-robin from a shuffled list, so sizes differ by at most one and the extra place falls randomly rather than always on the first team.
Related pages
- Password generator Generate strong random passwords in your browser, with the entropy shown.
- Merge PDF files Combine several PDFs into one, in the order you choose.
- QR code generator Make a QR code for a link, text, WiFi network or contact details, and download it as SVG.
- Image resizer Resize an image to exact dimensions or a percentage, in your browser.
- Split and extract PDF pages Pull out a page range, split into single pages, or delete pages.
- Random number generator Random numbers in any range, plus dice, coin flips and a shuffled pick from a list.
- Image crop, rotate and flip Crop to an aspect ratio, rotate in 90° steps, or mirror an image.
- Lorem ipsum generator Generate placeholder text by paragraphs, sentences or words.
- Meta tag generator Generate title, description, canonical, Open Graph and Twitter Card tags.
- Printable graph paper Generate and print squared, dotted, isometric, hexagonal or lined paper.
Sources
- Calculated on this page — At One Place