Part 3 of 4 Write the header and definition of the method de…

Part 3 of 4 Write the header and definition of the method described below. NOTE: This method must be visible outside of the class and must not require an instance of the class to be invoked. binarySearch This method takes in an int array of sorted numbers and an int key to search for. It returns the index of the element in the array that matches the key. If no match is found, it returns -1. The method must implement a binary search algorithm. HINTS: Remember that the binary search algorithm determines which half of the set the data is in, divides that subset in half, and repeats.