Ringkasan Tantangan
Given an integer (`n`), return an array of integers from `1` to `n` (inclusive), replacing numbers that are multiple of:
Given an integer (n), return an array of integers from 1 to n (inclusive), replacing numbers that are multiple of:
- 3 with
"Fizz".
- 5 with
"Buzz".
- 3 and 5 with
"FizzBuzz".