Question: break a loop and continue

Here is a simple example to explain my problem:

I would like to have a break after the first graph and with return

the loop shoul continue to the next and so on.

Thank you for your help!

 

Test:=proc()

    plot(x^j,x=-2..2):

end proc:

for j from 1 to 3 do

   Test()

end do;

Please Wait...