can someone pls help me
<!DOCTYPE html>
<html>
<body>
<button onclick="nextquestion()">next question</button>
<p id ="question"></p>
<script>
function nextquestion() {
var x = [];
while(x.length < 1){
var r = Math.floor(Math.random() * 38 ) + 1:
if(x.indexOf(r) === -1)x.push(r);
}
function nextquestion() {
var z = [];
while(z.length < 1){
var s = Math.floor(Math.random() * 38 ) + 1:
if(z.indexOf(s) === -1)z.push(s);
}
localStorage.setItem("questionsetup", z," ",x());
var t = localStorage.getItem("questionsetup");
document.getElementById("question").innerHTML = t;
}
</script>
</body>
</html>