index Function
index
finds the element at the index when handling lists, or the element at
the key when handling maps.
index(list, value)
Examples
> index(["a", "b", "c"], 1)"b"
> index({"a"=1, "c"=2, "d"=3}, "c")2
Related Functions
element
retrieves a particular element from a list given its index.