# Ampersand List

Turn a simple array into a comma delimited string with a friendly little ampersand between the last two items.

```yaml
fruits:
  - apples
  - bananas
  - jerky
```

::tabs
::tab antlers
```antlers
{{ fruits | ampersand_list }}
```

::tab blade
```blade
{{ Statamic::modify($fruits)->ampersandList() }}
```
::

```html
apples, bananas & jerky
```