if 문을 수정하여 x가 y보다 크면 "Hello World"를 알리고, 그렇지 않으면 "Goodbye"를 alert한다.

코드

if (x > y) {
  alert("Hello World");
} 
else {
  alert("Goodbye");
}