1.) Create a constant integer called ARRAY_LENGTH with value 100. 2.) Declare an integer array called myArray of size ARRAY_LENGTH. 3.) Write a for-loop that fills myArray with the first 100 numbers in the Fibonacci series. The Fibonacci series begins with 0, 1. Subsequent numbers in the series are the sum of the previous two numbers. So the series begins 0 1 1 // = 0 + 1 2 // = 1 + 1 3 // = 1 + 2 5 // = 2 + 3 8 // = 3 + 5 13 // = 5 + 8 21 // = 8 + 13 34 // = 13 + 21