← Back to tool

Guide · The 1–10 range

Random Number 1 to 10

Updated: June 2026

A number from 1 to 10 is the everyday workhorse of random picks: rate this, choose a lane, roll for it, pick who goes first. Ten options is small enough to feel concrete and large enough to feel fair. This guide covers the odds, the easy way to draw a handful without repeats, and how 1–10 differs from the look-alike ranges 0–9 and 1–9.

Pick a Number 1–10 →

Free · No upload · Instant in the browser

Ten outcomes, each equally likely

The range 1 to 10 is inclusive, so the possible results are 1, 2, 3, 4, 5, 6, 7, 8, 9 and 10 — ten in total. On a fair generator each has the same chance: 1 ÷ 10 = 0.1, or ten percent. The inclusive formula adds one to the span so the top value can actually appear:

n = 1 + floor(random() × 10)

Drop the + 1 on the span and you'd top out at 9; forget the leading 1 + and you'd start at 0. Getting both right is what makes 10 reachable and 0 impossible, which is exactly what "1 to 10" should mean.

1–10 vs 0–9 vs 1–9

These three are easy to confuse because they all sound similar, but they are not the same draw. Pick the one that matches what you actually need:

RangeOutcomesBest for
1 to 101–10 (ten)Ratings, counting picks, "choose a number"
0 to 90–9 (ten)A single random digit, PIN positions
1 to 91–9 (nine)Non-zero digit, leading digit of a number

If someone asks for "a random digit", they almost always mean 0–9. If they say "pick a number, one to ten", they mean 1–10 and they expect 10 to be on the table. The generator lets you set the minimum and maximum directly, so you never have to guess which convention a formula used.

Drawing a few without repeats

Sometimes you want several numbers from 1 to 10 with none repeating — assigning ten people a random running order, dealing out distinct stations, or building a shuffled answer key. Raise How many and switch on No repeats (unique). The tool then treats 1–10 as ten tickets and draws without putting any back, so you can get up to all ten in a fully shuffled order. Ask for more than ten unique values and it will warn you, because the bag only holds ten.

Leave repeats on instead and each pick is independent — handy for simulating ten rolls of a ten-sided die, where the same face can and should reappear.

Everyday uses

  • Deciding who goes first in a game or queue.
  • Rolling a virtual ten-sided die for tabletop play.
  • Picking a random rating to seed a survey or test.
  • Choosing one of ten options, lanes or teams.
  • Shuffling ten items into a random order with unique mode.

When to use crypto-secure

For casual fun, the default source is fast and fair. If the pick decides something people care about — who wins, who pays — turn on Crypto-secure so the result comes from the browser's cryptographic generator and can't be predicted or replayed. As always, the draw happens on your device alone; nothing is uploaded, so there is no server result anyone could lean on.

Frequently asked questions

Does a random number from 1 to 10 include 10?

Yes. The range is inclusive, so 1 and 10 can both come up — ten outcomes, each with a 10% chance.

What's the difference between 1–10 and 0–9?

Both have ten outcomes, but 1–10 runs 1 through 10 and 0–9 runs 0 through 9. Use 0–9 for a single random digit.

How do I get all ten numbers in random order?

Set the count to 10 and turn on unique. The tool shuffles 1 to 10 so each number appears exactly once.

Are the picks really fair?

Yes. Every value has the same one-in-ten chance. Short runs may look uneven, but that's normal randomness.