# Unique

Returns all of the unique items in the array:

```yaml
checklist:
  - zebra
  - hippo
  - hyena
  - giraffe
  - zebra
  - hippo
  - hippo
  - hippo
  - hippo

```

::tabs

::tab antlers
```antlers
{{ checklist | unique | list }}
```
::tab blade
```blade
{{ Statamic::modify($checklist)->unique()->list() }}
```
::

```html
zebra, hippo, hyena, giraffe
```
