To find the midpoint between two points, you are finding the average of the x coordinates and the y coordinates.
The formula for the midpoint \(M\) between two points \((x_1, y_1)\) and \((x_2, y_2)\) is given by:
\[ M = \left( \frac{x_1 + x_2}{2}, \frac{y_1 + y_2}{2} \right) \]
So the correct response is: Finding the average of the x coordinates and the y coordinates.