How can we change the third element of the bools array?

bools[3] = false;bools[2] = false;bools[2] = "false";bools[4] = false;

Super! Arrays are zero-indexed, so the third element of bools has an index of 2.

Yikes! Arrays are zero-indexed, so the third element of bools has an index of 2.