This is a scoping problem. The variable j is only visible within the scope of where it was declared. Thus it is only visible within the for loop as it was declared in there, and doesn't exist after...