Get<>(array, float) Returns the value (reference) from array at index. generic get<>(this array array, float index) Parameters array Type: array index Type: float Returns generic The value at index. Examples array<float> arr = [3, 2, 1] inspect(arr.get(1)) // 2