Editing a List
Edited
Suppose you already have your list and you want to change the contents.
How can I remove items from my list?
The remove block will remove the item at the specified index from your list.
The parameter can be:
An integer - indexes start at 1.
last - This give you the last item in the list
any - This gives you a random item in the list.
How do I replace items in my list with another?
The replace block will replace the item at the index (specified by the first parameter) with the item specified at the third parameter.
The first parameter can be:
An integer - indexes start at 1.
last - This give you the last item in the list
any - This gives you a random item in the list.