Question: How would you access the word It from this multidimensional array?

  1. `matrix[1[2]]`
  2. `matrix[1][1]`
  3. `matrix[1,2]`
  4. `matrix[1][2]`

Answer: The correct answer of the above question is Option B:`matrix[1][1]`