Although problem 6 is relatively simple, there are a few worthwhile hints:
- The box is a two-dimensional structure: it's useful to use two nested for-loops, one for each dimension
- The outer for loop moves the cursor from top to bottom
- The inner for loop moves the cursor from the left to the right; don't print a new line until each line is complete
- Compare the two loops in the problem 5 solution