Swift - Control Flow
What will be printed by this Swift code?
let number = 3
switch number {
case 1:
print("One")
case 2:
print("Two")
case 3:
print("Three")
fallthrough
case 4:
print("Four")
default:
print("Default")
}