How do I push "fizz" into the array, and remove the number it should be replacing? – Javascript
Below is my code so far. My console.log is printing the array in sequential numbers each time I run the function. I want "fizz" to be printed when count%3===0, which it's doing, but also adding 3 to the array. I…