How do you append a string to a list of strings, particularly, to a specific string in the list?
For example:
myList = ['apples', 'oranges', 'bananas']
newString = 'peach'
I want to append newString to index 1 ('oranges') of myList (so that the newString appears after index 1 in myList.) How would I go about doing that?