index
index(array: Expr, index: Expr)
returns the zero based indexed element from the specified array. Returns an error if it's first argument isn't an array, or if the index is out of bounds.
index([1, 2, 5], 2) => 5
index(array: Expr, index: Expr)
returns the zero based indexed element from the specified array. Returns an error if it's first argument isn't an array, or if the index is out of bounds.
index([1, 2, 5], 2) => 5