After creating an array, assign values to the array through a loop.
For example, code:
int? []? nums? =? New? int? [ 100];
for(int? I = 0; I< 10; i++){
nums[i]? =? Me;
}