/*
* @title 自動鉛筆ころがしマシーン
* @description 画面内にある全部のラジオボタンを適当に選択する
* @include *
* @license MIT License
* @javascript_url
*/
Array.from(document.querySelectorAll('form')).forEach(form => {
Array.from(form.querySelectorAll('input[type=radio]')).forEach(radio => {
form[radio.name].value = form[radio.name][Math.floor(Math.random() * form[radio.name].length)].value
})
})