Create Variable Array API

Hello

I can't seem to find the syntax to create a 2-dimensional  array Array(i,j) to store various information in.

Can someone help me?

Thank you.

A+

Hello

Dim Table(0, 2) 

1 square table x 3

After that, if you want to do it dynamically, you should know that you can't use them in loops to increase their size while keeping the content already filled in, so you have to know its dimensions from the start.