The program below asks the user to enter a phrase as a string. It should then print out that same string, replacing any lowercase vowel letter (a, e, i, o, u) with a capital X.

The following examples demonstrate the expected program output.

Enter a phrase: abacadabra
XbXcXdXbrX
Enter a phrase: the quick brown fox jumped over the lazy dogs
thX qXXck brXwn fXx jXmpXd XvXr thX lXzy dXgs
The program does not work correctly. Without making any other changes, add either a continue or break statement in the right spot to produce the expected output.

phrase = input("Enter a phrase: ")

count = 0
for letter in phrase:
if letter == "a" or letter == "e" or letter == "i" or letter == "o" or letter == "u":
print("X", end="")
print(letter, end="")

phrase = input("Enter a phrase: ")

count = 0
for letter in phrase:
if letter == "a" or letter == "e" or letter == "i" or letter == "o" or letter == "u":
print("X", end="")
continue
print(letter, end="")