# SPACE

SPACE(`number`)

Returns a string containing the `number` of repeated spaces

### Arguments

| Input    | Description                          |
| -------- | ------------------------------------ |
| `number` | Number of spaces to fill string with |

### Output

A string with specified `number` of spaces

### Example

```
SPACE(`3`) = "   "
```
