Random Decision Maker

Stuck choosing? Paste your options and let chance decide.

Free random decision maker — paste any list of options, or use yes/no and magic 8-ball modes, and let your browser pick one at random. Beats analysis-paralysis. Nothing is uploaded. It runs free in your browser on Gera Tools, with nothing uploaded.

Last updated Source: Gera Tools

How does the random decision maker choose?

It uses crypto.getRandomValues — a cryptographically secure random source — to pick one of your options with equal probability. Every option has the same chance, with no bias toward the top or bottom of the list.

The Random Decision Maker breaks analysis-paralysis by picking one of your options at random. Paste a list, hit a button, and let chance settle it — whether that’s what to eat, which task to tackle first, or a simple yes/no call. It runs entirely in your browser.

When randomness is actually useful

Deliberate randomisation is a legitimate decision-making tool in several real situations:

  • Genuinely symmetric choices — when two or more options are equally good and you are only losing time by analysing further. What to have for lunch when you like both options equally is a classic case.
  • Breaking team deadlock — when a group is stuck and no one option dominates, a random draw is often fairer than whoever speaks loudest.
  • Removing order bias in lists — shuffling a todo list or backlog and working through it removes the invisible bias of “I’ll do the top item first.”
  • Sampling — picking a random item from a set for quality testing, code review, or triage.

Fair, unbiased picks

Choices are made with your browser’s cryptographically secure random generator (crypto.getRandomValues), so every option has an exactly equal chance. There’s no weighting toward the first or last item. This is meaningfully stronger than Math.random(), which is a pseudo-random generator — though for everyday decisions either is effectively unbiased.

Three modes

  • Decide for me — picks one item from your pasted list. Paste one option per line; blank lines are ignored.
  • Yes / No — answers a binary question instantly, with exactly 50/50 odds.
  • Magic 8-ball — picks from Yes, No, Maybe, Ask again later for a playful verdict. Useful when the question is uncertain enough that all four answers have something to say.

The preference trick

There’s a known trick to this: when the tool gives you an answer and you feel a flash of disappointment, that’s your real preference showing. The decision itself may not matter — but noticing your reaction to the random result often clarifies what you actually want. Sometimes a random pick just helps you notice it, and you override it — which is fine. That’s still a useful outcome.

Everything runs locally in your browser, so your options are never uploaded.