Array Ruby

# Intersection      &
# Difference        -
# Union             |
# Intersection (&) creates a new array, merging the common elements of two arrays but removing uncommon elements and duplicates.
tue = [ "shop", "eat", "sleep" ]
wed = [ "shop", "eat", "read", "sleep" ]
tue & wed # => ["shop", "eat", "sleep"]