Здравствуйте!
Пожалуйста, помогите с созданием функции паузы для текстового ротатора:
<!DOCTYPE html>
<html>
<head>
<script language="JavaScript">
function rotateEvery(sec)
{
let Quotation=new Array(
'Мир',
'Труд',
'Май',
'Июнь',
'Июль',
'Август'
);
let which = Math.round(Math.random()*(Quotation.length - 1));
document.getElementById('textrotator').innerHTML = Quotation[which];
setTimeout('rotateEvery('+sec+')', sec*3000);
}
</script>
</head>
<body>
<button onclick="rotateEvery(1)">Старт</button>
<div id="textrotator"></div><audio id="audio"></audio>
</body>
</html>
Благодарю за помощь!