How do I add items to a list?
Edited
Use the add block to add items to a list.
Example
In a list, items are put in a certain position. The add block will add items to the end of the list.
To place items in a particular position, use the insert block. This block will insert an item at the specified location and shift everything from that location towards the end.
Positions start at 1. You can insert an item at the end of a list with the parameter last.
You can also insert an item in a random location with the parameter any.