Run »
fruits = ['apple', 'banana', 'cherry'] fruits.insert(1, "orange") print(fruits)
['apple', 'orange', 'banana', 'cherry']