cannot find symbol please help me

iam trying to make a break out game and right now iam trying to set up the bricks i have two images iam using this is my code

bricks = new ArrayList();

for(int r = 0; r < 4; r++) {

for (int c = 0; c < 8; c++){

Bricks newBrick;

if((r + c)% 2 == 0)

newBrick = new Bricks(10 + 75 * c, 100 + 25 * r, brickImage1);

else

newBrick = new Bricks(10 + 75 * c, 100 + 25 * r, brickImage2);

bricks.add(newBrick);

}

}

on this line

newBrick = new Bricks(10 + 75 * c, 100 + 25 * r, brickImage1);

it cannot find symbol any ideas?

[612 byte] By [TheChamp13] at [2007-9-30 22:09:17]
# 1
"cannot find symbol" means that you referred to something that you didn't declare or didn't import.If you want any more help than that, you should post the actual error message.
paulcw at 2007-7-7 11:22:27 > top of Java-index,Security,Event Handling...