let colorBlue = "Blue"
let colorRed = "Red"
let colorPicked = "Red"
if colorPicked == colorRed {
print("Yes! this is the picked color")
} else if colorPicked == colorBlue {
print ("Not the picked color!")
} else {
print("color picked is not known")
}