FizzBuzz, the coding interview classic! People in college struggle with this problem and they ask it during interviews at Google, Facebook and more... can you figure it out? We want the butterfly to say the numbers one through 50 one after another. But, we want the butterfly to say "Fizz" if the number is a multiple of 3, and "Buzz" if the number is a multiple of 5. And if it is a multiple of 3 AND 5, say "FizzBuzz!" Can you do it?? Hint - you will need a variable, if statements, and an AND statement. The first few numbers in the sequence are: 1, 2, Fizz, 4, Buzz, Fizz, 7, 8, Fizz, Buzz, 11, Fizz, 13, 14, FizzBuzz...