No, I'm using numbers for both values. The exact code is
On button clicked: Array set value at (0,0) to Array.At(0,0) + Array.At(0,1)
I'd expect every time the button is clicked for the value to increase by whatever the value at Array.At(0,1) is but it doesn't do that
If I turn Array.at(0,1) into a variable, A and then try
On button clicked: Array set value at (0,0) to Array.At(0,0) + A
The program then works