Local experiment · unlimited draws
RNGdle Random Roll Sandbox
Draw a number inside your browser, then see its EP and matched badges. The sandbox is separate from the original game’s one-roll daily rule.
Make a local roll
Press the button once for one uniformly selected integer from the full inclusive domain. The result is calculated on this page, without an account or a request to the original game. Repeating the experiment does not alter your odds on the next press.
A fair draw, explained
A uniform draw gives every valid integer one equal chance out of 1,000,001. This includes zero and one million, which are sometimes accidentally excluded by a range calculation. The sandbox starts from a cryptographic random 32-bit value supplied by the browser. Because 2³² is not an exact multiple of 1,000,001, simply taking a remainder would give some outcomes a slightly larger share. The implementation rejects the small high-end remainder of the 32-bit range and draws again, then maps the accepted value into the number domain. This is rejection sampling.
The important word is independent. The next sandbox number is not corrected to make a previous streak look balanced, and the button does not search for an interesting digit pattern. If the same number appears again, that is allowed. If a run of modest scores appears, the draw does not owe you a rare one. The rule engine examines the number only after selection. EP is an interpretation of the selected integer, never an input to the draw.
Theoretical probabilities can still be useful for understanding a tier. The complete rule enumeration puts 10,000 of 1,000,001 possible integers in the mythic number tier. That ratio is a theoretical fraction of the finite domain, not a forecast about what you will see in a small set of clicks. It also does not say which exact number you will receive. A single specified integer remains one outcome among 1,000,001 each time.
Exact tier counts for a uniform draw
Each row counts valid integers whose calculated EP falls in that tier. A fresh local draw gives every integer the same chance.
| Number tier | Matching integers | Fraction of domain |
|---|---|---|
| trash | 10,114 | 1.011% |
| common | 489,889 | 48.989% |
| uncommon | 250,028 | 25.003% |
| rare | 149,970 | 14.997% |
| epic | 50,003 | 5.000% |
| anomaly | 39,997 | 4.000% |
| mythic | 10,000 | 1.000% |
What happens after the draw
Once a number is selected, the same analyzeNumber function used by the homepage checker evaluates its badge conditions. Some look at arithmetic properties such as powers, primes, factorial values, divisibility, and Fibonacci membership. Others inspect decimal digits: repeated pairs, blocks that mirror one another, ordered runs, or a sum of the digits. A number can match both kinds at once. The sandbox displays all matching badges so the total is inspectable rather than appearing as an unexplained number.
Each badge has a fixed EP value in the captured rule set. The calculation adds independent badges directly. When two or more matching badges share a family, only the highest-valued badge in that family adds its EP; the other matches remain listed but are labeled as not counted. This is especially relevant for numbers that contain nested patterns. A long repeated block often contains shorter repeats as well, and counting all related badges without the family rule would overstate the game’s displayed EP.
Finally, the total EP maps to one of seven number tiers. The thresholds come from the all-number distribution, not from how many people happened to roll a number today. A sandbox result therefore has the same calculated EP and tier as the homepage checker would show for that integer under this captured version. To compare every possible outcome, read the theoretical ranking; to examine a dated set of player results, read the saved day board.
Your local trail
The sandbox can keep up to 100 recent results in local storage on this device. The list is for your own comparison; it is not an official account history, a leaderboard submission, or a source for this site’s public data. Nothing in that list is sent to the original game when you view or clear it.
- Your recent sandbox numbers will appear here after a local roll.
Use the sandbox for inspection
The sandbox is useful when you want to see how often particular patterns appear in your own small experiment or to practice reading badge and family outcomes. A short run can be entertaining, but it is a poor estimator of rare events. The complete domain calculation is the proper source for exact counts. The sandbox neither predicts a future official roll nor improves the chance of receiving high EP. Those two statements remain true whether you click once or many times.
The original game’s daily roll and this browser tool also have different records. An official result may be attached to an account or appear in a public ranking under that game’s rules. A sandbox result is local to your browser. Clearing local history removes the convenience list but does not change the mathematical score for any number. If you want to check a specific result again, enter it in the number checker; the same independent rule function will reproduce its badges and EP.
Frequently asked questions
- Does the sandbox use my official daily RNGdle roll?
- No. It runs in this browser and does not send a roll to the original game. The official daily allowance is separate.
- How is a sandbox number chosen?
- The browser draws a 32-bit random integer through crypto.getRandomValues and uses rejection sampling to map it evenly onto 0 through 1,000,000.
- Can I improve my chance of a high-EP number?
- No. Each draw is uniform and independent. The score is assigned after a number is selected; knowing its pattern does not change a future draw.
- Can zero or one million appear?
- Yes. The domain contains every integer from zero through one million, including both boundaries.
- Why do some badges appear without adding EP?
- Related badges share a family. Only the highest-valued matching badge in each family contributes to the total, although all matched badges remain visible.
- Where are recent sandbox rolls stored?
- Up to 100 recent results are kept in this browser’s local storage. Clearing this site’s storage or using the clear button removes that local list.