module.exports = (text, li) => { words = text.split(/[, ]+/); newwords = []; words.forEach((word) => { if (word.trim() != "" && word.length > 3) { newwords.push(word); } }) return newwords; }