Write `fizzbuzz(n)` returning a list of length n. For each i in 1..n: 'FizzBuzz' if divisible by 15, 'Fizz' by 3, 'Buzz' by 5, else the number as a string.