Answer:
finalList, will contain all the words found in list1 and list2 in alphabetical order with no repeated words.
Explanation:
list1 ← RemoveDuplicates (list1)
list2 ← RemoveDuplicates (list2)
finalList ← Join (list1, list 2)
finalList ← Alphabetize (finalList)
The first step remove the duplicate in the list and returns the list to list1.
The next step does the same thing for list2.
The next step join list1 and list2 together and assign the new list finalList.
Lastly, the finalList will have its element in alphabetical order.