Tool workspace

Random Name Picker

Run quick fair picks for classrooms, meetings, or games.

Runs locally in your browser.

Selection

Add names and click “Pick random name”.

Remaining names: 0

Use in code

Choose one item uniformly from a list. These snippets represent the same random-pick operation used by a name-picker tool.

Pick one random list item

TypeScript

Primary API

crypto.getRandomValues()

Uses cryptographic randomness to select a safe index from an in-memory list.

Built-in APILibrary: Web Crypto API
const names = ["Alex", "Priya", "Sam", "Lee"];

const bytes = new Uint32Array(1);
crypto.getRandomValues(bytes);
const index = bytes[0] % names.length;

console.log(names[index]);

Reference: Web Crypto API documentation

How to use

  1. Enter one name per line.
  2. Click the picker button to select a random name.
  3. Repeat selections as needed for turns or winners.

Use cases

  • Classroom participation and volunteer selection.
  • Team standups when you want a fair speaking order.
  • Giveaways, game rounds, and quick random decisions.

Examples

  • Input list: Alex, Priya, Sam, Lee, Jordan.
  • Use one draw to pick a presenter, or multiple draws for speaking order.
  • Pair with Spinning Wheel for a visual random draw flow.

Limitations and caveats

  • Random picks are generated by browser randomness and may vary by environment.
  • Results are random selections, not guarantees of long-term distribution.

History

  • Random name selection started as physical draws using slips of paper, bowls, and classroom jars.
  • Digital pickers became common with online classes, remote teams, and live community events.
  • Name pickers are now used beyond classrooms for fair turn-taking, standups, and lightweight game mechanics.

Source: Random selection overview · Randomness background (RANDOM.ORG)

Evolution and improvements

  • Early digital pickers handled one-time draws only; newer tools support repeated picks and quick list edits.
  • Browser-based tools removed the need for spreadsheets or manual random formulas.
  • Modern pickers often integrate with related tools like team generators and spinning wheels for flexible workflows.

Source: Random selection overview · Randomness background (RANDOM.ORG)

FAQ

Can I use this for classroom activities?

Yes. It works well for selecting volunteers, question turns, and small group activities.

Does the tool upload participant names?

No. Names stay in your browser session.

Related tools