<!DOCTYPE html>function displayResult(){var x=document.getElementById("mySelect").selectedIndex;var y=document.getElementById("mySelect").options;alert("Index: " + y[x].index + " is " + y[x].text);}Select your favorite fruit:id="mySelect"AppleOrangePineappleBananatype="button" onclick="displayResult()"Display index