hi! can anyone help me determine the sorted values of the array in this script.
for (x=0,x<=4,x++)
for (y=0,y<=3,y++)
{ if(num[y]>num[y+1])
{ temp=num[y];
num[y]=num[y+1];
num[y+1=temp;
}
{