I'm trying to randomly select 100 values from an array of 1000.
How do I do this?
Also, after selection, how can I add these 100 values into a new array.
Do I need to do something like this with a loop?
for (x = 0; x < 100; x++){
smallArray = smallArray + (value1);
};
Thanks!