Build your intuition. Fill in the missing part by typing it in.
The function below returns an object for the specified vertex. Fill in the missing snippet for the method.
TEXT/X-JAVA
1public Vertex getVertex(int index) {
2 return vertices.get(___________);
3}
Write the missing line below.