HandyBench

Random Number Generator

Random numbers in any range, instantly.

How to use the Random Number Generator

  1. 1 Set the minimum and maximum values.
  2. 2 Choose how many numbers to generate, and whether repeats are allowed.
  3. 3 Click Generate and copy the results.

Examples

  • Pick a number between 1 and 100 for a game.
  • Draw 6 unique numbers from 1–49 for a lottery-style pick.

Frequently asked questions

Are the numbers truly random?

They use your browser’s cryptographically secure random generator (crypto.getRandomValues), which is far stronger than the standard Math.random and suitable for fair draws.

What does “no repeats” do?

It returns unique numbers with no duplicates, like drawing balls from a bag. The count cannot exceed how many numbers fit in your range.

Is the range inclusive?

Yes. Both the minimum and maximum you enter can appear in the results.