// Array Practice // Program takes 5 numbers from a user (from console), stores them into an // array, and then prints them to the screen. // Add code to complete this program. You only need to add code where indicated // by "ADD HERE". #include using namespace std; int main() { const int SIZE = 5; // size of array // ADD HERE - create an array of integers that will hold 5 integers. cout << "please enter 5 integers : " << endl; // FOR loop takes 5 integers from user and put them in an array for (int i = 0 ; i < SIZE ; i++) { // ADD HERE - take user's input and put it in the array you created } // ADD HERE - Write a FOR loop to print the array to the screen return 0; }