Skip to main content
Version: 25.4 (stable)

Array

An Array data variable holds a list of values of the same type. The Array elements may be of the type Boolean, Float, Integer or String.

An array stores its values in a specific order. Each value has an index that defines its position within the array and you can use them to select which element you want to access or display.

Indexes always start at 0! For example, given an array with the integer values [12, 23, 34, 45, 56]: Selecting index 0 returns the value 12. While selecting index 4 returns the value 56.