Write a function that returns the first n numbers of the Fibonacci sequence.
The Fibonacci sequence starts from 0 and 1, and each number is the sum of the two preceding ones.
Input: 5 Output: [0, 1, 1, 2, 3]
Input: 8 Output: [0, 1, 1, 2, 3, 5, 8, 13]