Cоnsider the cоde belоw… let x = pаrseInt(prompt("Type in аn integer"));let y = pаrseInt(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?