array = [360, 780, 120].sort #This will put the numbers in the correct order. print(array) #output = [120, 360, 780] #items are sorted in order, and printed to the console.