An important tool is missing from our array. How do we add it?

tools.push("flashlight")tools[-1] = "flashlight"tools.add("flashlight")tools[0] = "flashlight"

That's it! The push method adds a value to the end of the array.

Uh oh! The push method adds a value to the end of the array.