let arrayOfOptionals: [String?] = ["Seems", "like", "an", nil, "of", "optionals"] let arrayWithNoOptionals = arrayOfOptionals.compactMap { $0 }