What does this program print?

from URLSession
Swift 6.3.3 beginner 2 min

What does this program print?

swift
func accepted(_ status: Int) -> Bool {
    (200...299).contains(status)
}

print([199, 200, 204, 300].map(accepted))
Open in playground
Report an error