# Pluck

Retrieves the values of a given `key` from each item.

```yaml
games:
  -
    feeling: love
    title: Dominion
  -
    feeling: love
    title: Netrunner
  -
    feeling: hate
    title: Chutes and Ladders
```


::tabs

::tab antlers
```antlers
{{ games | pluck('title') }}
```
::tab blade
```blade
<?php
  $plucked = Statamic::modify($games)
    ->pluck('title')
    ->fetch();
?>
```
::

```yaml
games:
  - Dominion
  - Netrunner
  - Chutes and Ladders
```