Input the selling prices of all homes in a subdivision named Botany Bay sold during the year 2006 and determine the median selling price. The median of a list of N numbers is as follows:
-The middle number of the sorted list, if N is odd
-The average of two middle numbers in the sorted list, if N is even
(Hint: After inputting the prices into an arrary, sort that array.)