Select the correct text in the passage.

Brian has created the following selection sort class in Java. In which line is the index of the smallest value returned? In which line is the input array given as an argument?

public class SelectionSort
private static int positionMin (int] vals, int startPosition) { int minPosition startPosition; for (int i startPosition; i