To add a value like "groceries" to an array, we code the array name toDo, followed by a period ., then the instruction push("groceries").
"groceries"
toDo
.
push("groceries")
Make sure to pick toDo, followed by ., and finally push("groceries").