// Lab 12 Warm-up // Write a function that multiplies each element in the array "myArray" // by the variable "multiplyMe". #include using namespace std; // Write your function prototype here int main() { const int SIZE = 10; int myArray [SIZE] = {5, 10, 15, 20, 25, 30, 35, 40, 45, 50}; int multiplyMe = 5; // Add your function call here // print the array for(int i=0; i < SIZE; i++) { cout << myArray[i] << " "; } cout << endl; return 0; } // Write your function definition here