<h1>おみくじゲーム</h1>
<p id="result"></p>
<button onclick="omikuji()">おみくじを引く</button>
<script>
function omikuji() {
// おみくじの結果をランダムに選ぶ
let results = ["大吉", "中吉", "小吉", "吉", "凶"];
let randomIndex = Math.floor(Math.random() * results.length);
// 結果を表示する
document.getElementById("result").textContent = results[randomIndex];
}
</script>
コメント