Swift - Control Flow
What will be printed by this Swift code?
let score = 75
if score >= 90 {
print("Excellent")
} else if score >= 60 {
print("Good")
} else {
print("Try again")
}