Great job! You've reached another new level! In the previous level you've learned to use multiple lines of code in an if or repeat command. But you can't yet combine the two... Good news! In this level you will be allowed to put an if inside an if, or inside a repeat command. Putting a block of code inside another block of code is called nesting.

answer = ask 'Are you ready to learn something new?'
if answer is yes
    print 'Great! You can learn to use the repeat command in the if command!'
    print 'Hooray!'
    print 'Hooray!'
    print 'Hooray!'
else
    print 'Maybe you should practice some more in the previous level'
Latest update: 2025 May 02(809e63)