Why is this popping up?
Syntax error on token "+", Expression expected after this token
for (int row = 0; row < data.length; row++) {
for (int col = 7;;) {
data[row][col] = [row][1] + [row][2] + [row][3] + [row][4] + [row][5] + [row][6];
}for (int col = 8;;) {
data[row][col] = formatter.format(([row][7] / 2650) * 100);
}
}
It appears on every plus sign and the equals after data[row][col] =
.