How the pick is made
Every competitor says their wheel is random. Here is ours, with the numbers.
01 THE DRAW
Your browser already knows how to pick a number at random. That tool is called crypto.getRandomValues. Older shortcuts like Math.random() can fall into patterns you could, in theory, guess. This one starts from noise your computer gathers from places a program cannot predict. When you press Pick, it hands back a number between 0 and 65,535.
That number still has to land on one of your options. The clumsy way is to divide and keep the leftover. With two options it splits cleanly. With seven it does not, and the first few options would get a tiny extra chance. You would never notice it over dinner. It would still be unfair.
So we throw those leftover numbers away and ask for a new one until the split is even. At seven options that is two numbers out of 65,536. A redraw is over before you could blink.
This happens the instant you tap Pick. The winner is already chosen before the wheel moves. The spin is the reveal. It does not pick anything.
02 THE PROOF
RECORDED 5 SEPTEMBER 2026
This browser can't generate a fair pick. Try a current version of Chrome, Safari, Firefox, or Edge.
- PICKS
- 100,000
- EVEN SHARE
- 14,286
The chart above is 100,000 picks across 7 options, using the same method as when you press Pick. Seven is a useful test because a clumsy split would show up there. The bars are not perfectly even. Real chance wobbles. Some options land a bit more often, some a bit less.
We checked whether that wobble looks like ordinary luck or like a broken picker. It looks like luck. If one option were quietly winning extra rounds, the bars would lean hard one way.
A dead-flat chart, every bar exactly the same height, would be the odd result. That would look more like a counter than a genuine pick.
Pressing the demo button runs 1,000 picks live in your browser. A thousand picks will look lumpier than the recorded hundred-thousand run. That roughness is normal. If you flip a coin ten times, six heads and four tails is common, even though that split is sixty percent. Flip the same coin a hundred thousand times and it settles near fifty. Small samples look uneven. Large ones show the true split.
03 THE WHEEL IS NOT THE RANDOMNESS
A wheel on a screen is a picture that turns. It has no weight, no friction, no momentum. Letting the slowdown pick a winner makes the result depend on the phone, the browser, and whether the animation skipped a beat. A spinning picture cannot make a fair pick.
So the pick and the show are separate. When you press Pick, the winner is chosen at once. Then the wheel is told exactly where to stop. Extra turns, and a little offset inside the slice, keep you from reading the answer from how long it spins. It eases to a stop in just over twelve seconds. Escape or reduced motion shows the result at once, because the choice was already done.
Your computer makes the number from noise it already gathers. For dinner, that is unpredictable enough. It is still a computer, not thunder.
Some tools listen to radio hiss in the air. random.org does that. takeapick.com does not. It does a fair calculation on your device, which is what a casual pick needs.
04 PICKING AGAIN
When a random result appears and produces a quick flash of regret, the natural impulse is to tap the button a second time. Drawing repeatedly until an acceptable answer appears is not using a random decision maker. It is deciding for yourself while using the animation as a delay. If you want a decision to rely on multiple draws to smooth out short-term variance, you must choose that rule before touching the button.
Selecting Best of 3 before you pick establishes a clear agreement with yourself. The tool runs three consecutive draws and awards the choice to the option that wins a majority. Deciding the format in advance prevents you from bargaining after the result lands. If you draw once, dislike the outcome, and immediately declare that it should have been best of three, you are negotiating with an algorithm that cannot hear you.
Below the result display, the tool keeps a running record of recent picks from your current session. This history is not sent to any server, but it stays visible on your screen. When you see three conflicting picks recorded in sequence, the interface reflects your own indecision back to you. The tool does not tell you what to do; it shows you what happened when you asked.
05 WHAT THIS IS NOT
This website gives every option an equal chance. It does not read your mood, interpret cosmic signs, or predict your future. The wheel has no understanding of your dilemma and no preference about what you should do. The meaning that appears when an answer lands is your own reaction to seeing a choice made visible. If the result brings a feeling of relief, you know what you wanted. If the result makes you want to spin again, you know you favoured the other option.
takeapick.com is an independent website created and maintained by one person. It has no connection to Google, the coin flip feature in search results, or any interactive Google doodle wheel. Google Analytics measures general traffic if you agree to cookies, but no outside company operates this software or influences its results.
A random number generator has no place in health, legal, or financial decisions. Do not use this tool to choose medical treatments, evaluate legal disputes, allocate savings, or manage debt. Serious decisions require professional advice from qualified specialists who understand your circumstances and carry legal responsibility. This site is built for everyday standstills where all options are safe and you simply need a fair pick to get moving.