script.js const choice = (arr) => arr[Math.floor(Math.random()*arr.length)]
scrapbox.PageMenu.addMenu({
title: 'おみくじ',
image: 'https://gyazo.com/cb4e7f16f5a5fb0a2b42ce064a998ca2/raw'
})
scrapbox.PageMenu('おみくじ').addItem({
title: () => choice(['大吉', '吉', '中吉', '小吉', '凶', '大凶']),
onClick: () => null
})