diff --git a/index.js b/index.js index f37ad6b..b09094c 100644 --- a/index.js +++ b/index.js @@ -7,6 +7,7 @@ if (isNaN(number)) { output = ""; if (i % 3 === 0) (output += "Fizz"); if (i % 5 === 0) (output += "Buzz"); + if (!output) (output = i.toString()); console.log(output); } } \ No newline at end of file