Common values from both sets:
You can use the intersect(_:) method to create a new set containing all the values common to both sets.
let favoriteColors: Set = ["Red", "Blue", "Green"]
let newColors: Set = ["Purple", "Orange", "Green"]
...