Challenge 9 - FizzBuzz

Write a function that takes in a number, `n`, and returns an array of the numbers from 1 to `n`. For multiples of three, use Fizz instead of the number, and for the multiples of five, use Buzz. For numbers that are multiples of both three and five, use FizzBuzz (capitalization matters). 

Input: 
Output: