#include #include using namespace std; int main() { int i, x, y, temp; int number[10]; i = 0; // initialize the array while ( ____________________ ) { ____________________ ; ____________________ ; } srand(time(NULL)); i = 0; // shuffle the array while (i < 100) { x = ____________________ ; // generate a random integer between 0 and 9 inclusively y = ____________________ ; // generate a random integer between 0 and 9 inclusively temp = number[x]; ____________________ ; number[y] = temp; i = i + 1; } cout << "the array elements in random order are " << endl; i = 0; // output the array while ( ____________________ ) { cout << ____________________ << ", "; ____________________ ; } cout << endl << endl; return 0; }