Swift - Control Flow
Identify the error in this Swift switch statement using where clauses:
let score = 85
switch score {
case let x where x > 90:
print("Excellent")
case let x where x >= 80:
print("Good")
case let x where x >= 70:
print("Average")
case _:
print("Poor")
}