Welcome to Sets in Apex! A Set is an unordered collection of unique elements. Complete the method addToSet that accepts a SetstringSet and a String parameter element. Add the element to the set and return the modified set.
Example:
Hint: Use the add() method to add an element to a set.