We add a value to a specific index with insert(). By coding insert(0, "lemon"), we'll add the value to the start of the list.
insert()
insert(0, "lemon")
Make sure to pick insert, followed by (0, "lemon").
insert
(0, "lemon")