Kotlin - Control Flow as Expressions
Find the error in this Kotlin code snippet:
val y = 7
val output = when {
y == 5 -> "Five"
y == 7 -> "Seven"
else "Unknown"
}