We are supposed to use a for loop to get and display the first 10 fibonacci numbers. (1, 1, 2, 3, 5, 8, 13, 21, 34, 55) Starting with the 3rd number it is the sum of the previous two. So what kinda of loop or would i have to put in if then statements to get it to work. What about arrays?