True or False, the following code would print out every element in a 2D int array called values
for (int[] row: values)
{
for (int value: row)
{
System.out.println(value);
}
}
There are no hints for this question