What is the value of `result`?let a: Set = [1, 2, 3] let b: Set = [3, 4, 5] let result = a.intersection(b) print(result)