Array
An array stores its values in a specific order. Each value has an index that defines its position within the array.
Accessing Array Values
Item by Index
Returns a single value at the specified position. Indexes start at 0 — for
example, given [12, 23, 34, 45, 56], index 0 returns 12 and index 4
returns 56.
Array
Returns all values at once. Use this when connecting the variable to a 2D Plot to plot the entire array.
