The Answer is {10, 15, 20, 25}
The Union of two sets means you combine the two sets. However, each number will only be counted once. This means that if you have the sets
A = {1, 2} and
B = {2, 3}
The union of the two would be
A∪B {1,2, 3}
So, all you need to do is combine the two sets, and then remove any duplicates.