Given the following code snippet, what will be displayed on…

Given the following code snippet, what will be displayed on the web page if the user enters 55 at the prompt?      var result = “Yes!”;      var multiply = prompt(“What is 5 * 11?”);      result = (parseInt(multiply) == 55)?”Correct”:”Incorrect”;   document.write(result);