Append to a list, then sort it. space to flip Append to a list, then sort it. Answer nums = [3, 1, 2] nums.append(4) nums.sort() print(nums)