ToolsDoc

Random Number Generator

The Random Number Generator produces one or more random integers within a minimum and maximum range you specify, with an option to disallow duplicates.

276065173

How to Use

  1. Enter the minimum and maximum values.
  2. Choose how many random numbers to generate.
  3. Click Generate to view your random numbers.

Formula

Range Formula

Result = Math.floor(random() × (max − min + 1)) + min

Example

Range 1–100, count 5 → 12, 47, 8, 91, 63.

Frequently Asked Questions

Related Tools