JSでランダムに文字や数字を表示させるには
Math.floor(Math.random() * ○○○.length
を使います。
qiita.js
const omikuji = ["大吉","小吉","吉","凶"];
const rnd = Math.floor(Math.random() * omikuji.length);
上記を実行するとランダムに、 大吉 小吉 吉 凶 と表示されます。
色々応用効きそうです。
ちなみに、JSの実行コードは
console.log(○○○);
です。