> 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/ru/troubleshooting/errors/0020.md).

# 0020: Переменная не объявлена как массив

Компилятор встретил элемент массива, при этом этот массив не был объявлен.

**Возможные решения**: [объявите](/ru/coding/arrays.md#array-declaration) массив, используя ключевое слово `var`:

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

$items[0] = 0
```
