Random Team Generator
Split a list of names into balanced random teams instantly — nothing is uploaded.
Generate random teams online
Paste your list of names and choose how many teams you want. The generator uses a cryptographically secure shuffle (Fisher-Yates with crypto.getRandomValues) so every distribution is truly random. Members are then dealt out round-robin, ensuring teams are as balanced as possible — sizes never differ by more than one.
Everything runs locally in your browser. No data is sent anywhere, making it safe for sensitive lists like employee or student names.
FAQ
Are teams always perfectly equal in size? When the number of names is not divisible by the team count, some teams get one extra member — the difference is never more than one.
Is the shuffle truly random? Yes — it uses crypto.getRandomValues, the same cryptographic randomness your browser uses for security operations.
Is my data sent to a server? No — everything happens in your browser. Your names never leave your device.