function rain() { var html = "" html += `` html += `
` var amount = 7 for (let index = 0; index < amount; index++) { html += `
` } html += "" html += "
" return html } function halloween() { var html = "" html += `` return html } module.exports = { returnTheme: function() { var time = new Date() if (time.getMonth() + 1 == 10) { return halloween() } else if (time.getDate() % 10 == 0) { return rain() } return "" }, }