I try to fill an array randomly. I have an rows array:
rows = ['1','0','2','1','3'];
and columns array:
columns = ['0','0','1','2','3'];
and a button array:
butArray = [];
I initialized button array. What I try to
printArr[rows[i]][columns[i]] = butArray[i];
How exactly should I use loop here?
butArray[]and what is the final result