text00 = "your interiority impresses him"
text00 = {
let getRandomElemLocal = function(array) {
return array[(array.length * Math.random()) | 0];
};
let firstword = [
"Extinguish"
"Smoke"
"Build"
"High"
"Beat"
"Drop"
"Ideal"
"Return"
"Ponder"
"Promise"
"Layer"
"Unborn"
"my",
"your",
"his",
"her",
"their",
"our",
"your",
"their" ];
let secondword = [
"Wish"
"Again"
"Try"
"Jump"
"You"
"Space"
"More"
"And"
"Grasp"
"Eyes"
"Start"
"Worn"
"Potent"
"Drill"
"Search"];
let verb = ["embarrasses", "impresses", "frightens", "attracts"];
let pronoun = ["me", "you", "him", "her", "them", "us", "you", "them"];
let textArray = new Array();
textArray[0] = getRandomElemLocal(firstword);
textArray[1] = getRandomElemLocal(secondword);
textArray[2] = getRandomElemLocal(verb);
textArray[3] = getRandomElemLocal(pronoun);
return textArray.join(" ");
}