Given an integer n, return an array where each element follows these rules:
∙ If i is divisible by both 3 and 5, output "FizzBuzz"
∙ If i is divisible by 3, output "Fizz"
∙ If i is divisible by 5, output "Buzz"
∙ Otherwise, output the number as a string