Considering the following code segment:

if(x>y) {

y=x;

}

else if (x == y){

x=1000;

}

else{

y =100;

}

alert ( 'x=' + x + ', y = '+y);

Given x=0 and y=5, what will be displayed?

x=0, y=5

x=0, y=100

x=1000, y=100

x=0, y=0