# Random

## Overview
Picks a _single_ random item from an array or collection.

If you are trying to get _multiple_ random items, consider the [shuffle modifier](/modifiers/shuffle.md).

## Example

### The YAML
```yaml
arr:
  - Soda
  - Pop
  - Coke
```

### The Template

::tabs

::tab antlers
```antlers
{{ arr | random }}
```
::tab blade
```blade
{{ Statamic::modify($arr)->random() }}
```
::

### The Output
```
Soda (maybe)
```
