Coding Table on Activity Builder

I am trying to code a table on the activity building so that when the students input the correct number (or equation) they can know if they have done it correctly. I have read the codes, but I keep getting error messages.

For example: I have correct:this.CellNumericValue(1,2)=5 put in. I repeated this for each cell. I get an error saying duplicate definition.

Hello,
if you wrote something like:

correct: this.CellNumericValue(1,2)=5
correct: this.CellNumericValue(1,3)=8

etc …

this won’t work because your defining “correct” multiple times.

Instead you have to write:

correct: 
this.CellNumericValue(1,2)=5
and 
this.CellNumericValue(1,3)=8

etc …