const neFacts = [
'Nebraska football has won five National Champsionships',
'Nebraska founded the holiday Arbor Day',
'Kool-Aid was invented in Nebraska',
'Nebraska is the home of Warren Buffet, a world class investor',
'Nebraska is the home of Runza',
'Nebraska has the only unicameral, nonpartisan legislature',
];
const ksFacts = [
'Kansas football has won zero National Champsionships',
'Kansas retains archaic liquor laws',
'Kansas was home to Sam Brownback, the least popular governor in America',
'Kansas ran a failed tax experiment, taking its budget to the brink'
];
function randItem(arr) {
let idx = Math.floor(Math.random() * arr.length);
return arr[idx];
}
$("#fact").click(() => {
$("#ks").html("");
$("#ne").html("");
$("#ksimg").attr('class', "spinks");
$("#neimg").attr('class', "spinne");
setTimeout(() => {
$("#ksimg").attr('class', "hide");
$("#neimg").attr('class', "hide");
$("#ks").html(randItem(ksFacts));
$("#ne").html(randItem(neFacts));
}, 2000);
});