Which of these statements access the first value of a $names array?

$names[0]$names[1]$names[]

Great! Because arrays have zero-based indices, the first value has an index of 0.

Yikes! Because arrays have zero-based indices, the first value has an index of 0.