<!DOCTYPE html>function displayResult(){var x=document.getElementById("mySelect");var txt="All options: ";var i;for (i=0;i<x.length;i++){txt=txt + "" + x.options[i].text;}alert(txt);}Select your favorite fruit:id="mySelect"AppleOrangePineappleBananatype="button" onclick="displayResult()"Display text of all options