Jump to content
🛡️FORUMS ARE IN READ-ONLY MODE Read more... ×
Sign in to follow this  
cougarxr7

Array index out of range

Recommended Posts

Does anyone know of any information about this?

Thanks!

plainly speaking you're trying to access a non existing index within an array.

you would have to assign that index a value first before trying to access it.

example:

array = [0 , 1 , 2]

anything above index number 2 is out of bounds or also non existent index unless assigned a value with

array set [index, value] or array set [3, 3]

more info

Share this post


Link to post
Share on other sites
Sign in to follow this  

×