What is the value of numbers in the code below?
let numbers = [1, 2, 3, 4, 5, 6].filter { $0 % 2 == 0 }
[1, 3, 5]
[]
nil Reference: Apple Developer: Documentation: Swift: Swift Standard Library: Collections: Sequence and Collection Protocols: Sequence: filter()
[2, 4, 6]