What will be printed to the screen when the following code is run?

favoriteColor = "blue"
if (favoriteColor != "blue"):
print("Orange crush")
else:
print("True blue")
Select one:

a.
True blue

b.
Impossible to tell from the information given

c.
favoriteColor

d.
Orange crush

a. True blue