Swift - Control Flow
What is the output of the following Swift code?
let number = 2
switch number {
case 1:
print("One")
case 2:
print("Two")
fallthrough
case 3:
print("Three")
default:
print("Other")
}