# 0020: Variable is not declared as array

You're using a short array notation, but the array is not declared.

**Possible solutions:** [declare](https://docs.sannybuilder.com/language/data-types/arrays#array-declaration) the array using the `var` keyword:

```pascal
var $items: array 10 of Int

$var[0] = 0
```
