# RIGHT

### Description

`RIGHT` takes string (or list) and a number and returns the number of characters from the string from the end.

### Example with String

```
RIGHT('blablub', 4)
```

This will return `'blub'`.

### Example with List

```
RIGHT([1, 2, 3, 4, 5], 2)
```

This will return `[4, 5]`.
