Hi all,
I've very new to this Construct3 so probably my question is very basic.
I want to push data to 2d array. Actually construct2/3 has "Push" built in function but using that, I can able to push the value either X or Y axis. But my expected array is looks like the below structure.
0 | 1 | 2 |
------------------
1 |mango | Apple |
2 | 10 | 10 |
3 |20 | 20 |
Also, The array is dynamically increment so I should use Insert or Push.