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

# 0048: Error reading array size

The size of an [array](/language/data-types/arrays.md) is missing or is not a number (e.g. a [string literal](/language/data-types.md#string-literals)).

**Possible solutions:** use a valid positive number greater than 0:

```
0@(1@,i) = 0 // error
0@(1@,"1"i) = 0 // error
0@(1@,1i) = 0 // OK
```
