ok i pretty much got it, i just had a question my array if of size 6 and i only get 4 numbers that are two digits, is that how its suppose to be? and how to i space the numbers from the output of the array?
#include <iostream>
using namespace std;
int main() {
int array[6], i, counter = 0;
srand(time(0));
for(i = 0; i<6; i++)
int x = rand() % 89 + 10;
cout << array[i]<< " " << endl;
}