# REVERSE

### Description

`REVERSE` reverses the elements in a list.

### Example

```
REVERSE(['first', 'second', 'third'])
```

This will return `['third', 'second', 'first']`.
