been practicing array for weeks and got confused, came up with this, How can I insert values in blank array column using this method:
#include <Array.au3>
Example()
Func Example()
Local $aArray[6][2]
For $i = 0 To UBound($aArray) - 1
For $j = 0 To $aArray
$aArray[$i][$j] = $i
Next
Next
_ArrayDisplay($aArray) ; Display the array.
EndFunc ;==>Example