Create a method named setBuzz that accepts an array of ints as an argument and returns an array of Strings. The method iterates the int array and does the following:
• For multiples of 3, add the String "Fizz" instead of the number to a new String array.
• For multiples of 5, add "Buzz" instead of the number
• For multiples of 3 and 5, add "FizzBuzz" instead of the number
• For all other conditions, add the number as a String
EXAMPLE:
Sample Input
52 4 65 15 1 37 2 92 3
Sample Output
52 52
4 4
65 Buzz
15 FizzBuzz
1 1
37 37
2 2
92 92
3 Fizz