The function get_median(numbers) should return the median value of a list of numbers. For odd-length lists, the median is the middle element; for even-length lists, it is the average of the two middle elements.
The function crashes immediately on any input with a TypeError.
Can you find the single-word fix that makes it work?