> 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/0086.md).

# 0086: Неверный индекс массива

Скриптовый движок Liberty City Stories и Vice City Stories допускает только [локальные переменные](/ru/coding/variables.md#lokalnye-peremennye) для [индексации массивов](/ru/coding/arrays.md#obshii-sintaksis).

**Возможные решения**: замените глобальную переменную на локальную:

```
$array($index,1) // ошибка
$array(0@,1) // верно
```
