Now I have a list
like ["apple", "banana", "lemon", "strawberry", "orange"]
If I want to reorder the list
, for example:
Insert the strawberry into a new position, then the elements behind the strawberry need to move to the right one step. What should I do?
["apple", "strawberry", "banana", "lemon", "orange"]