let ary1 = [1,2,3] let ary2 = ary1.reduce(into: []) { $0.append($1 + 12) }
let dictionary = strings.reduce(into: [:]) { r, e in e.components(separatedBy: ":") => { r[$0[0]] = Int($0[1])! } }
dictionary: [AnyHashable: Int]