Fibonacci
Generate a Fibonacci Sequence and output the numbers within the list. The Fibonacci Sequence is a series of numbers where the next number is found by adding up the two numbers before it.
- Step 1: loop from 0 to 50
- Step 2: use 2 variables within the loop to store the previous values (because we need to add those up)
- Step 3: add the result of the addition to the list