Random Number 2–5 Generator
Pick a number between 2 and 5
This tool picks a whole number from 2 to 5, each of the four outcomes with an equal 25% chance. It is handy whenever the values start above 1 — assigning a table number that begins at two, dealing out a four-option choice, or picking a quantity in a fixed 2–5 band. Tap Generate for an instant, unbiased pick.
Every draw uses the Web Crypto API rather than Math.random(), so each of the four outcomes is cryptographically secure and perfectly even — no bias toward the low or high end of the range.
Use cases
- Pick a random quantity in a fixed 2–5 range
- Assign one of four people, teams, or slots a turn
- Choose a table, group, or round number that starts counting at two
- Set a random difficulty, level, or serving between 2 and 5
- Draw a four-option answer for a game, quiz, or prompt
How it works
- Your browser generates a cryptographically secure 32-bit unsigned integer
- The integer is mapped to the four-value range 2–5 using rejection sampling, so every value is exactly equally likely
- The result is displayed instantly — no server request needed
Everything runs locally in your browser. Generated numbers stay in your browser and are not stored by Rangdom.
Frequently asked questions
Which numbers can this generate?
Only 2, 3, 4, or 5. The range is inclusive on both ends, and 1 is never returned — this page starts at two rather than one.
Is every number equally likely?
Yes. Each number from 2 to 5 has an equal one-in-four (25%) chance of appearing on every generation.
Can I get the same number twice in a row?
Yes — true randomness means any number can appear regardless of previous results. Runs and repeats within four outcomes are normal, not a sign of bias.
What if I need a different range?
Use the custom range generator to pick any minimum and maximum, or jump to the 1–5 generator for a range that starts at one.