xxxxxxxxxx
List<String> fruits = ['Mango', 'Pawpaw', 'Avocado', 'Pineapple', 'Lemon'];
// Insert new item in the list using insert()
fruits.insert(2, "Apple");
// Display result
print('The new list: ${fruits}');
// The new list: [Mango, Pawpaw, Apple, Avocado, Pineapple, Lemon]