The output of the program will be:
Let's dance!
Let's dance!
Let's dance!
This is because the for
loop runs 3 times (as chorus = 3
), and during each iteration, it prints "Let's dance!". Thus the correct response is:
Let’s dance! Let’s dance! Let’s dance!