You can use the new functions .erase and .remove.
.erase removes something at a given index, for example:
>>friends = ["Liz", "Ana", "Sam"]
>>friends.remove(2)
The code above will remove the second element from the collection (the one with value "Ana")
.remove will remove all of the elements that match a give value:
>>tripsThisYear = ["Paris", "London", "Rome", "London", "Madrid"]
>>tripsThisYear.erase("London")
If you run the code above you will see that the function removes the two elements with value "London"