Python - Loop Control
Analyze the following code and identify the issue:
count = 0
while count < 4:
if count == 2:
continue
print(count)
count += 1