===========================================================
Explanation:
Let's assume that x is the largest value of the list. If so then x = 60 because
range = max - min
range = x - 1
range = 60-1
range = 59
Effectively, you work backwards to go from a range of 59 to have x = 60 as the max.
So x = 60 is one possible value. We can't have x any larger or the range would be larger.
But we can have x be smaller. Specifically, it would be the min of the list. If negative x values are allowed, then x = -9 is the other possible x value
Here's why
range = max - min
range = 50 - x
range = 50 - (-9)
range = 50+9
range = 59