---
title: "{pick:a|b|c}"
description: One of the options, chosen at random.
---

```text
{pick:option one|option two|option three}
```

**Platforms:** Twitch and Kick.

Separate options with `|`. Spaces around the options are trimmed. The bot
picks one each time the command runs.

## Examples

```text
!luck    →  Hey {user}, {pick:good luck|no refunds|welcome aboard}!
!8ball   →  🎱 {pick:Yes|No|Ask again later|Without a doubt|Very doubtful}
!gg      →  {repeat:{random:1-5}|{pick:GG|PogChamp|LFG}}
```

Options can contain variables of their own, and a `{pick:}` can sit inside
any other variable.

## Notes

- For long lists of options, make a [response list](/chat-bot/custom-commands#response-lists)
  and use [`{list:name}`](/chat-bot/variables/list) instead of a 40-option pick.
- Picks are independent - two `{pick:}`s in one response are two rolls.
