おみくじ-button
 [おみくじ-button.icon] と書くと、icon-buttonになります	押すと、「おみくじ-button」ページの button.js が実行されます
もとのコードをなるべく保った状態で修正
button.jsfunction omikuji () {  const rand = Math.floor(Math.random() * 100);  let msg = "大吉";  if (rand > 9) msg = "中吉";  if (rand > 29) msg = "吉";  if (rand > 69) msg = "凶";  if (rand > 89) msg = "大凶";  alert(msg);} 
omikuji();