Generation

generate functionSat, 12 Nov 2022

Fill an array with 10 random numbers between 10 and 90

static void fillArray(int[] array) { for(int i = 0; i < array.Length; i++) { array[i] = randomInt(10, 90); } }

Want to kickstart your project?Use the new AI Studio to create your code