function generateRandomTopic()

in excel-addin/src/taskpane/taskpane.js [313:320]


function generateRandomTopic() {
    // TODO select random element from list of topics, fill in to text field
    const items = ['Edible fruits', 'US Presidents', 'Unicorn startups'];
    const item = items[Math.floor(Math.random() * items.length)];
    //const item = items[1];
    var topic_box = document.getElementById("topic-box");
    topic_box.value = item;
}