> For the complete documentation index, see [llms.txt](https://docs.sannybuilder.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.sannybuilder.com/troubleshooting/errors/0020.md).

# 0020: Variable is not declared as array

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

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

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

$var[0] = 0
```
