# How I use a random picker fairly

A beginner-friendly guide to random selection, lists, dice, cards, spin wheels, and avoiding biased inputs.

- Date: 2026-09-27
- URL: https://ilham.dev/posts/how-to-use-a-random-picker-fairly/
- Markdown: https://ilham.dev/posts/how-to-use-a-random-picker-fairly/index.md
- Tags: random, picker, games, tools
- Reading time: 2 min


A random picker is only as fair as the input list and the random process used.

I use [Random Generator](/tools/random-generator/) for the quick version of this task, then I review the output before relying on it.

## The simple idea

A random picker is only as fair as the input list and the random process used.

The tool is a shortcut for the mechanical work. It does not remove the need to understand what the result means.

## Step 1: Enter each option once unless weighting is intentional

Enter each option once unless weighting is intentional.

## Step 2: Remove empty or duplicate accidental entries

Remove empty or duplicate accidental entries.

## Step 3: Choose the random mode you need

Choose the random mode you need.

## Step 4: Run the picker

Run the picker.

## Step 5: Do not reroll secretly if fairness matters

Do not reroll secretly if fairness matters.

## Step 6: For serious drawings, define rules before picking

For serious drawings, define rules before picking.

## Step 7: Use stronger audit processes for prizes or legal decisions

Use stronger audit processes for prizes or legal decisions.

## My checklist

Before I trust the result, I check:

- Enter each option once unless weighting is intentional.
- Remove empty or duplicate accidental entries.
- Choose the random mode you need.
- Run the picker.
- Do not reroll secretly if fairness matters.
- For serious drawings, define rules before picking.
- Use stronger audit processes for prizes or legal decisions.

That review step is what keeps a quick tool from becoming a quick mistake.
