What does this program print?

from Enums and pattern matching
Swift 6.3.3 beginner 2 min

What does this program print?

swift
enum Channel: String {
    case email
    case push
}

for token in ["email", "sms", "push"] {
    print(Channel(rawValue: token)?.rawValue ?? "unknown")
}
Open in playground
Report an error