Answer: Selection Sort finds the minimum value for each index of the array and successively does this until the end of the array is reached.
To add on:
Once it “selects” the minimum value in the unsorted portion of the list it then swaps it into the end of the sorted portion of the list, which will be its final position.