Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Java Java Arrays Iteration Review Looping over 2d arrays

need answer for this question

what would you fill them in with

1 Answer

Jonathan Grieve
MOD
Jonathan Grieve
Treehouse Moderator 91,252 Points

Hi Connor,

We could fill them in straight for you on the spot. Instead I think it would be more beneficial to you if we simply give you some pointers.

As you can see the code is a simple 2 dimensional array whiich requires 2 loops to iterate over. You need to provide iteration variables (which could be any name of your choice to make up the structure of your for loops and than use them to fill in the array indexes.

To kick off, you could for example use use j for the inner for loop and i for the outer for loop.