Why You Got "No" Five Times in a Row
Nothing makes people suspect a random generator faster than a streak. Here is the uncomfortable math: streaks are what fairness looks like.
The streak that made you suspicious
Spin a fair yes/no wheel enough times and you will hit a run that feels impossible — five NOs in a row, seven, more. The instinct that something is broken is universal. But flip a real coin 100 times and the odds of seeing at least one streak of five identical results are better than 96%; a streak of six or seven is more likely than not. In a truly random sequence, runs are not the exception. They are a mathematical certainty.
The gambler’s fallacy, in one sentence
The gambler’s fallacy is the belief that past results change future odds — that after five NOs, a YES is "due." It is false because each spin is an independent event: the wheel has no memory, and probability has no sense of justice. The most famous demonstration cost real money: at the Monte Carlo casino in 1913, a roulette wheel landed on black 26 times in a row while gamblers ruinously doubled down on red, certain the streak owed them a correction. It owed them nothing.
Why humans are terrible judges of randomness
Ask people to write down a "random" sequence of coin flips and they alternate far too often — real randomness looks too streaky to us, and our fakes look too tidy to statisticians. The brain is a pattern-seeking machine; it evolved to find signal, so it finds signal in noise. This is why lottery players avoid last week’s numbers, why "hot hands" get debated for decades, and why a perfectly fair wheel gets accused of favoritism roughly five spins into any session.
What a rigged generator would actually look like
Ironically, a generator with no streaks would be the suspicious one — it would mean the results are being managed to look fair rather than drawn independently. Cheap randomizers use Math.random(), a formula-based pseudo-random generator that is statistically fine but theoretically predictable from its seed. This wheel uses crypto.getRandomValues, the browser’s cryptographic entropy source, which pulls unpredictability from the operating system itself. Each spin is an independent, exact 50/50 — which guarantees both the fairness and, yes, the streaks.
Living with the streak
Practical advice: decide in advance that one spin is binding, because "best of three" is just the gambler’s fallacy wearing a bow tie. If a streak of NOs genuinely bothers you, notice that feeling — it usually means you wanted YES all along, and that is information no generator can give you. And if you want deliberately uneven odds, use a mode that says so out loud: Chaos mode runs an openly disclosed 60/40 split and shows you which side is favored before you spin. Disclosed bias is a game; hidden bias is a scam. The streaks, though — the streaks are just math.