please help! I looked around but can't get my code right! I'm doing Ruby, 9. next!
1 = 20
loop do
i -= 1
next if i % 2 == 1
print "#{i}"
break if i <= 0
end
I keep getting this "Oops, try again. Make sure to replace the ___s with the appropriate keywords!"
what is wrong!