Question: How to see the 2nd value only

The equaltion given below has 4 roots. I only want to see the 2nd solution for each alpha and it will come in a list. I don't want to see all the solutions. What to do

for alpha from .4 by .1 to 5 do
S := solve(x^4-alpha, x);
S[2] ;
end do;

Please Wait...