What a random number generator actually does
Every spin, roll and shuffle on this site is generated fresh, with no memory of what happened before it. Here’s what that means and why it matters.
What a random number generator is
A random number generator, or RNG, is code that produces an unpredictable value on demand — in a casino-style game, that value decides where a wheel stops, what a die shows, or which card comes off the top of a shuffled deck. On Alpine Reel Room, that value comes from crypto.getRandomValues(), a function built into your browser specifically for generating unpredictable numbers, with a simpler fallback only if that’s unavailable.
The key property of a well-built RNG isn’t just that it’s hard to predict — it’s that each result is independent. Nothing about the last spin of Aurora Prize Wheel or the last roll on Midway Dice Duel is stored anywhere and fed into the next one. Every round starts from the same blank state.
Why a losing streak doesn’t mean a win is due
Myth
After several losing spins in a row, a win is “due” because the odds have to even out.
Fact
This is called the gambler’s fallacy. On Aurora Prize Wheel, every spin has exactly the same odds regardless of what came before — a category with a 45.3% chance is 45.3% likely on the very next spin, whether the last ten spins landed there or not. The wheel has no memory, and neither does the code behind it.
Does the site ever bias a result to feel luckier or unluckier?
No. There’s no code anywhere on this site that engineers a “near miss” or nudges an outcome based on how long you’ve been playing, how much you’ve bet, or how many times you’ve lost. The published odds on each game’s page are the odds the code actually uses.
What about the card games, like Lucky Sevens Solitaire?
The deck is shuffled randomly using the same underlying randomness. After that, though, every move is a decision you make — there’s no RNG deciding whether a move succeeds once the cards are dealt.
Why does an RNG matter if there’s no real money involved?
Because fairness is still the point. A game with virtual coins and rigged odds would be a worse product even without money attached — published, genuine odds are how you know what you’re actually looking at when you check a rules panel.