In which case will the phrase "Look at all those colors!" be printed?
colors = [...]
for color in colors:
if color == "black":
break
elif color == "white":
continue
else:
print(color)
else:
print("Look at all those colors!")