script.jsfunction sayBaka(){
let msg = new SpeechSynthesisUtterance();
msg.text = 'バカ';
msg.lang = 'ja-JP';
msg.pitch = Math.random();
msg.rate = Math.random();
window.speechSynthesis.speak(msg);
delay=Math.floor(Math.random()*100000)
setTimeout(sayBaka,delay)
}
sayBaka()