I have an array of numbers
counter[7,3,9,5,1]
if i do counter.sort() it will change the array to
counter.sort()
counter[1,3,5,7,9] <