I was wondering how you delete a specific item in a list. For example, how are you going to delete "thing" in the list without using "delete (#) of list" because the thing could be any number in the list?
The simplest way is to scan through the list until you find the item you're looking for, then delete whatever position that item happens to be in. Here's an example: