ToolNimba

๐ŸŽฏ Decision Maker: Pick One Option at Random

By ToolNimba Editorial Team ยท Updated 2026-06-20

The decision is

0 options ready

This decision maker takes the weight off your shoulders when two or more options feel equally good. Type your choices one per line, press the button, and the tool selects exactly one at random with a quick spin before it lands. Every choice gets a genuinely equal chance, so the result is fair every time.

What is the Decision Maker?

A decision maker is a simple randomiser with a clear job: choose one item from a list so you do not have to. It is built for the moments when ordinary reasoning stalls, the options are close enough that the difference barely matters, or you simply want an impartial tie breaker that nobody can argue with. Instead of overthinking, you hand the call to chance and move on.

Fairness is the whole point, so the engine matters. This tool draws each result from the browser's cryptographic random number generator (crypto.getRandomValues) rather than the ordinary Math.random function. To keep every option equally likely it uses a method called rejection sampling: it reads a random byte, and if that byte falls in a small leftover range that would tilt the odds, it throws the byte away and draws again. That removes the subtle modulo bias that naive random pickers suffer from, so a list of three, seven, or fifty options each lands with the exact same probability.

The optional animation is presentation, not chance. The result is decided the instant you click; the spin that flashes through your options before settling is purely visual and never changes the outcome. You can switch it off for an instant answer. Everything runs in your browser with no list ever sent to a server, so your options stay private and the tool works offline once the page has loaded.

There is a sensible way to lean on a tool like this. Randomness is excellent for low stakes choices and for breaking genuine ties, but a coin or a picker cannot tell you what you actually want. A useful trick: if the result lands and you feel a flicker of disappointment, that feeling is information, and you are free to overrule the tool and pick the other one. Used that way, the decision maker is as much a clarity device as a randomiser.

When to use it

  • Choosing where to eat, what to watch, or which task to tackle first when every option looks fine.
  • Settling a friendly tie between two or more people who each want something different.
  • Picking a random name, prize, or participant from a short list for a draw or giveaway.
  • Breaking decision paralysis by handing a low-stakes call to chance so you can move on.

How to use the Decision Maker

  1. Type your options into the box, putting one option on each line.
  2. Leave Animate before landing on for a spin effect, or untick it for an instant result.
  3. Press Decide for me to randomly select exactly one option from your list.
  4. Read the highlighted choice, press Copy result to save it, or press Decide again to re-pick.

Formula & method

With n options in the list, each option has an equal probability of 1 ÷ n of being chosen. A random index from 0 to n minus 1 is drawn with crypto.getRandomValues, and values in the unfair tail are rejected so no option is favoured.

Worked examples

You cannot decide between four dinner options: Pizza, Sushi, Burgers, and Tacos.

  1. Enter the four options, one per line, so n = 4
  2. Each option has probability 1 / 4 = 0.25, or 25 percent
  3. Press Decide for me to draw a random index from 0 to 3
  4. The tool lands on index 2, which is Burgers

Result: Burgers is selected, with each of the four options having had an equal 25 percent chance.

Three friends each want to pick the movie, so you list their names to choose who decides.

  1. Enter Ava, Ben, and Cara on three separate lines, so n = 3
  2. Each name has probability 1 / 3, about 33.3 percent
  3. Untick the animation for an instant answer and press Decide for me
  4. The tool returns Ben as the chosen name

Result: Ben wins the pick, fairly and instantly, with all three names equally likely.

Chance of any single option being chosen by list size

Number of optionsChance for each optionAs a percentage
21 in 250%
31 in 3about 33.3%
51 in 520%
101 in 1010%
201 in 205%

When randomness helps and when to decide yourself

SituationGood fit for a random pick?Why
Close, low-stakes choiceYesThe options are similar, so chance saves time with little downside.
Breaking a genuine tieYesAn impartial draw is fair and feels neutral to everyone involved.
High-stakes life decisionNoOutcomes differ a lot, so weigh them deliberately instead.
You already lean one wayUse as a gut checkYour reaction to the result can reveal what you truly prefer.

Common mistakes to avoid

  • Putting several options on one line. The tool splits your list by line breaks, so "tea, coffee" on a single line counts as one option, not two. Press Enter to put each choice on its own line.
  • Thinking the animation decides the result. The choice is locked in the moment you click. The spin is purely visual and never changes which option wins, so a longer spin does not make any outcome more likely.
  • Expecting no repeats across several picks. Each press is independent, so the same option can come up twice in a row. That is normal randomness, not a fault. The tool picks one option each time without memory of past picks.
  • Using it for choices that deserve real thought. A randomiser is great for ties and trivial calls, but it cannot weigh costs, risks, or what you actually want. For decisions that matter, use it only as a tie breaker or a gut check.

Glossary

Option
A single choice in your list, entered on its own line, that the tool can select.
Random selection
Choosing one item with no pattern or preference, so each option has an equal chance.
Probability
A number from 0 to 1 (or 0 to 100 percent) describing how likely an outcome is. With n options each has a probability of 1 divided by n.
Rejection sampling
A method that discards random values landing in an unfair range and redraws, removing bias so every option is equally likely.
Modulo bias
A subtle skew that appears when raw random numbers are folded into a smaller range without correction, making some options slightly more likely.
Tie breaker
An impartial method, such as a random pick, used to settle a choice when the options are evenly matched.

Frequently asked questions

How does the decision maker choose an option?

It draws a random index across your list using the browser cryptographic random generator (crypto.getRandomValues) and selects the option at that position. Rejection sampling discards unfair values so every option has an exactly equal chance.

Is the pick really random and fair?

Yes. The tool uses a cryptographic random source rather than ordinary Math.random, and corrects for modulo bias so no option is favoured. With n options, each has the same 1 in n probability on every press.

Does the spin animation change the result?

No. The winning option is decided the instant you click Decide for me. The spin that flashes through your choices is purely visual and only reveals the result that was already chosen. You can turn it off for an instant answer.

Can the same option be picked twice in a row?

Yes. Each press is independent and has no memory of earlier picks, so a repeat is perfectly normal. If you want no repeats, remove an option from the list after it is chosen before pressing again.

How many options can I add?

You can add as many lines as you like, and each non-empty line counts as one option. The tool keeps the odds equal no matter whether you have two options or fifty.

Are my options private?

Yes. Everything runs in your browser and nothing you type is sent to a server. Once the page has loaded the tool works offline, and your list disappears when you close or reload the page.