Random Even Number Generator
Random even numbers in any range, plus the full list from 1 to 100.
Generated numbers
Your numbers will appear here. Press Generate to start.
Generate random even numbers — values divisible by two — between any two bounds. Useful for splitting groups into pairs, assigning alternating slots, building teaching examples, or any time an odd number would break what you are doing. The complete list of even numbers from 1 to 100 is on this page too.
Every match from 1 to 100
There are 50 of them, listed in full below. The generator above draws from exactly this set, so every result you get is one of these — and each is equally likely.
- 2
- 4
- 6
- 8
- 10
- 12
- 14
- 16
- 18
- 20
- 22
- 24
- 26
- 28
- 30
- 32
- 34
- 36
- 38
- 40
- 42
- 44
- 46
- 48
- 50
- 52
- 54
- 56
- 58
- 60
- 62
- 64
- 66
- 68
- 70
- 72
- 74
- 76
- 78
- 80
- 82
- 84
- 86
- 88
- 90
- 92
- 94
- 96
- 98
- 100
Why use this tool?
Never an odd result
The generator draws only from even values, so you never have to filter results afterwards or re-roll when an odd number appears.
Any range, including negatives
Even numbers work in both directions: -8 and -42 are as even as 8 and 42. Set a negative minimum and the full range is covered.
The full list included
All fifty even numbers from 1 to 100 are listed on this page as plain text, so you can read or copy them without generating anything.
Private and free
Generation runs in your browser using the Web Crypto API. Nothing is sent to a server, and there is no account or usage limit.
How this random even number generator works
Rather than drawing a number and rejecting it when it turns out to be odd, the generator works out the set of even values in your range first and then draws from that set directly. Even numbers form a simple arithmetic progression — start at the first even value at or above your minimum, then step by two — so the set can be described without ever being written out, however wide the range.
Drawing an index into that set rather than a raw number is what keeps the result unbiased. It also means the work does not grow with the size of the range: picking an even number between 1 and a billion costs exactly what picking one between 1 and 10 costs.
Negative ranges are handled properly. Because -8 divided by two leaves no remainder, it is even, and the generator includes it — a detail that a naive modulo check gets wrong in several languages.
How to use it
Step 1: Set your range
Enter the lowest and highest numbers to draw between. Both ends are included.
Step 2: Choose how many
Pick a quantity, decide whether values may repeat, and choose a sort order.
Step 3: Generate
Press Generate, then copy a single value or export the whole batch.
Example usage
- Splitting a group into pairs
- An even total guarantees nobody is left without a partner — draw the group size from even numbers and the pairing always works out.
- Alternating schedules
- Even-numbered weeks or slots for one team, odd for the other, with the starting point drawn at random so it is not chosen by anyone.
- Teaching parity
- Generating a batch and asking which are even is a faster demonstration than writing numbers out, and the full list on this page gives the answer key.
Frequently asked questions
How many even numbers are there between 1 and 100?
Fifty: 2, 4, 6 and so on up to 100. They are all listed on this page. Between 1 and 99 there are still fifty, because 100 is the only even number in that last pair.
Is zero an even number?
Yes. Zero divides by two with no remainder, which is the definition. It is included whenever your range covers it — a point that surprises people often enough to be worth stating.
Can even numbers be negative?
Yes. -2, -8 and -100 are all even. Set a negative minimum and they will be drawn alongside positive values.
Why not just generate any number and double it?
That works for a range starting at zero, but it quietly breaks elsewhere. Doubling numbers from 1 to 50 gives you 2 to 100 — which is fine — but doubling to fit a range of 37 to 63 requires arithmetic that is easy to get subtly wrong at the boundaries. Drawing from the actual set avoids the question.
Are the results genuinely random?
They come from your device's cryptographic random source, and the index into the set of even values is drawn without modulo bias. Every even number in your range is exactly as likely as any other.
Related tools
Random Odd Number Generator
Random odd numbers in any range, plus the full list from 1 to 100.
Random Prime Number Generator
Random primes in any range, plus the full list of primes under 100.
Random Number Generator
Set any minimum and maximum and draw as many numbers as you need.
Browse every tool in Random Number Generators & Number Tools.