| Keyword | Definition | 
|---|---|
| add | putting a new value into a list | 
| index | the position in a list to look at or change | 
| iterate | going through each value stored in a list to search for or process data | 
| list | a data structure which can store more than one value in a specific order | 
| lookup | getting a value from a list at a specific index | 
| modify | changing a value stored in a list | 
| remove | deleting a value from a list | 
| search | finding data by iterating through each value stored in a list and checking if it matches what you're looking for | 
| sort | arranging the values stored in a list so that they are in order |