Answer: 60
=================================================
Step-by-step explanation:
Sort the values from smallest to largest.
You should get {22, 53, 60, 98, 102}
The middle most value is 60, so this is the median.
If you wanted, you can cross off the outermost pair of values (22 and 102) to end up with {53, 60, 98} to help see the middle better.
----------
Another approach:
We have n = 5 items in the sorted set {22, 53, 60, 98, 102}
The middle-most value is in slot 3 since n/2 = 5/2 = 2.5 which rounds up to 3. The value in slot 3 is 60, so this is the median. This trick only works when we have an odd number of values.