LaToya is creating a program that will teach young children to type. What keyword should be used to create a loop that will print "try again" until the correct letter is typed?

(1 point)
• else
• print|
• while
• random

1 answer

The correct keyword to use for creating a loop that will print "try again" until the correct letter is typed is while.

This keyword allows you to continue executing a block of code as long as a specified condition is true. In this case, you would set the loop to continue printing "try again" until the correct letter is entered.