So, for example, I got a list: myList=["asdf","ghjk","qwer","tyui"]
I also have a list of index numbers of the items I want to remove: removeIndexList=[1,3]
(I want to remove items 1 and 3 from the list above)
What would be the best way to do this?