(1..10000).each do |n|
puts case
when n % 2100 == 0 then "RezzNozzJazzFizzBuzz"
when n % 1155 == 0 then "RezzNozzFizzBuzz"
when n % 770 == 0 then "RezzNozzJazzBuzz"
when n % 462 == 0 then "RezzNozzJazzFizz"
when n % 330 == 0 then "RezzJazzFizzBuzz"
when n % 210 == 0 then "NozzJazzFizzBuzz"
when n % 110 == 0 then "RezzJazzBuzz"
when n % 66 == 0 then "RezzJazzFizz"
when n % 165 == 0 then "RezzFizzBuzz"
when n % 105 == 0 then "NozzFizzBuzz"
when n % 70 == 0 then "NozzJazzBuzz"
when n % 42 == 0 then "NozzJazzFizz"
when n % 30 == 0 then "JazzFizzBuzz"
when n % 77 == 0 then "RezzNozz"
when n % 55 == 0 then "RezzBuzz"
when n % 35 == 0 then "NozzBuzz"
when n % 33 == 0 then "RezzFizz"
when n % 22 == 0 then "RezzJazz"
when n % 21 == 0 then "NozzFizz"
when n % 15 == 0 then "FizzBuzz"
when n % 14 == 0 then "NozzJazz"
when n % 10 == 0 then "JazzBuzz"
when n % 6 == 0 then "JazzFizz"
when n % 11 == 0 && n != 11 then "Rezz"
when n % 7 == 0 && n != 7 then "Nozz"
when n % 5 == 0 && n != 5 then "Buzz"
when n % 3 == 0 && n != 3 then "Fizz"
when n % 2 == 0 && n != 2 then "Jazz"
else n
end
end
To embed this project on your website, copy the following code and paste it into your website's HTML: