Five integers are read from input and stored into the array arrayToModify. Then, numCompare is read from input. Write a static method modifyArray() that takes an integer array parameter and an integer parameter. For each element in the array, if the element is less than or equal to the integer parameter, then replace the element with 0. Otherwise, replace the element with 1.