// I have to declare 50 arrays to declare that range from 1 to 50 with the following syntax:
la_Array_1;
la_Array_2;
la_Array_3;
la_Array_50;
// Then based on a value of the an integer value called li_Choose_Array I want to access that specific array.
// For example if li_Choose_Array is equal to 17 then I want access la_Array_17.
// My questions are, how would I declare the 50 arrays dynamically so that I do not have to manually enter each declaration.
// And secondly, how would I access the la_Array_17 when my li_Choose_Array value is equal to 17?
TIA