The numbers array is supposed to contain numbers 5 through 10.

How might we set the element at index 0 to 5?

Boom! By adding .set() after the array's name, we can change values in it.

Whoops! If we can get elements with get(), what might we use to set elements?