Say we want to iterate through the following 2D array

String[][] words = new String[3][5];

How many loops would we need to access every item?

Two for loops, one nested in the other.
  • Two for loops, one that runs after the other ends.
  • One for-each loop
  • All of the above will work

There are no hints for this question