var msg = new SpeechSynthesisUtterance("The number is " + localStorage.getItem("mynumber")); msg.lang = 'en-US'; msg.rate = 4; window.speechSynthesis.speak(msg);