textSplitter = (text, nWords) => {
console.log(text);
const lineLength = nWords;
const nLines = text.split(" ").length > nWords ? Math.ceil(text.split(" ").length / lineLength) : 1
let splitText = []
let a=""
for(let i=0;i<=nLines; i++) {
a = text.split(" ").filter((d, j) => {return (j < i * lineLength) && (j >= (i-1) * lineLength)}).join(" ");
splitText.push(a);
}
const firstElement = splitText.shift();
return splitText
}