Given the following initial Array of integers, what will the order of the Array be after the second iteration of a selection sort?
(63, 28, 37, 20, 19, 48, 82}
[19, 20, 37, 28, 63, 48, 82}
[19, 20, 63, 28, 37, 48, 82}
(63, 28, 37, 48, 82, 19, 20}
{48, 28, 37, 20, 19, 63, 82}
{28, 37, 63, 20, 19, 63, 82}