Number List Generator
Generate a random number list for your range. Set minimum, maximum, and quantity, then copy the results as a clean line by line list. Copy the output.
Enter your Settings
Result
What the number list generator does
This generates a whole list of random whole numbers at once, all within a range you choose, and lays them out ready to copy. Set the range, say how many you want, and press the button to fill the list.
Where picking a single random number is about one outcome, this is about volume: producing a column of values you can lift straight into a spreadsheet or document.
How to use it
- Set the minimum and maximum. These mark the range every number will fall within, with 1 and 100 as the defaults.
- Set the quantity. Choose how many numbers the list should contain.
- Press Generate. The list appears in the box, one number per line, ready to select and copy.
Press Reset to return to the defaults.
A list of random values
It is worth being clear about what kind of list this is, since the name could be read two ways. This does not count steadily from the minimum up to the maximum. Instead, every entry is an independent random number drawn from inside your range, so the list comes out shuffled and unpredictable, not in order. Because each is drawn on its own, the same value can appear more than once in the list, which is normal for random data rather than a fault.
One number per line
The list is laid out with a single number on each line, and that format is deliberately useful. A column of line-separated numbers pastes cleanly into a spreadsheet, dropping each value into its own cell down a column, and it slots just as neatly into a text file or a bit of code. So once the list is generated, getting it where you need it is usually a matter of selecting it and pasting.
What a list of numbers is good for
A batch of random numbers is most useful as filler and fuel. It makes quick sample data for trying out a spreadsheet formula, a chart, or a sort, without hunting for a real dataset. It can populate a mock table while you build something, give you a set of values to test a program against, or serve as a rough random sample. Whenever you need many numbers rather than one, and you do not much mind what they are as long as they fall in a sensible range, this fills the gap.
Good to know
A few small things help you get what you expect. The range is inclusive, so both the minimum and the maximum can appear in the list. The numbers are pseudo-random, drawn from the browser's built-in randomness, which is fine for sample data, testing, and everyday use but not meant for security-sensitive work. And since this shares its engine with the random number generator, the difference is really one of purpose: reach for that tool when you want a single pick shown prominently, and this one when you want a long list to copy out in bulk.
Questions people ask
How do I generate a list of numbers?
Set a minimum and maximum for the range, choose how many numbers you want, and press Generate. The list appears with one number per line, ready to copy.
Is the list random or in order?
Random. Each entry is an independent random number from within your range, so the list is unpredictable rather than a steady count from the minimum to the maximum.
Can the list contain duplicates?
Yes. Because each number is drawn on its own, the same value can appear more than once, which is expected for random data.
How do I get the list into a spreadsheet?
The numbers come out one per line, so you can select the list and paste it straight into a spreadsheet column, where each value lands in its own cell.
References
- Pseudorandom number generator. Wikipedia, The Free Encyclopedia. https://en.wikipedia.org/wiki/Pseudorandom_number_generator
Ankit Khatiwada is a researcher and graduate student in Computer Science at Saarland University, with strengths in statistics, data analysis, data engineering, and full stack development. His work sits at the intersection of quantitative reasoning and applied technology, making him a strong fit for tools that depend on clear numerical logic. At Eon Tools, he reviews number and statistical tools.