Write a function that takes in an integer and returns an array of that size filled with the Fibonacci sequence.
function fibonacci(size) {
// create an empty array to store our fibonacci sequence values
var fibArray = [];
// iterate the value of the size argument
for (var i = 0; i < size; i++) {
// if the array contains less than two elements push the value 1 into the array