This compound returns an array of integers in the Fibonacci Sequence.
F0 = 0 (user modifiable)
F1 = 1 (user modifiable)
Fn where n >= 3, will return an array up to n Fibonacci Numbers.
So F10 will return
Array index : 0, 1, 2, 3, 4, 5, 6, 7, 8, 9
'Human' index : 1, 2, 3, 4, 5, 6, 7, 8, 9, 10
Fibonacci Array: 0, 1, 1, 2, 3, 5, 8, 13, 21, 34
