<script>
document.addEventListener("DOMContentLoaded", function() {
var texts = [
"Цель 1",
"Цель 2",
"Цель 3",
"Цель 4",
"Цель 5"
]
function getRandomInt(max) { return Math.floor(Math.random() * Math.floor(max)); }
var lastIndex;
document.querySelector('.btn').addEventListener('click', function() {
do {
var index = getRandomInt(texts.length);
} while (index === lastIndex);
lastIndex = index;
document.querySelector('.goal').innerText = texts[index]
})
});
</script>
<style>
.goal {
font-family: 'Roboto',Arial,sans-serif !important;
font-size: 22px !important;
}
</style>