Consider the code below… let x = parseInt(prompt(“Type in an…

Consider the code below… let x = parseInt(prompt(“Type in an integer”));let y = parseInt(prompt(“Type in another integer”));if (x < y) {  x = y;} else {  y = x;}  Assume the user types in a valid integer for both x and y. What will be the value of x and y after the program is done executing?