Create a function that, given a number, returns the corresponding value of that index in the Fibonacci series.
The Fibonacci Sequence is the series of numbers:
1, 1, 2, 3, 5, 8, 13, 21, 34, ...
The next number is found by adding the two numbers before it:
fibonacci(3) ➞ 3
fibonacci(7) ➞ 21
fibonacci(12) ➞ 233
The first number in the sequence starts at 1 (not 0).