let numbers = [ 2, 3, 5, 7, 11 ]let min = numbers.min()!//min is 2let max = numbers.max()!//max is 11print("min is \(min)")print("max is \(max)")