// strips all punctuation and returns the last word of a string// hyphens (-) aren't stripped, add the hyphen to the regex to strip it as wellfunctionlastWord(words) {
let n = words.replace(/[\[\]?.,\/#!$%\^&\*;:{}=\\|_~()]/g, "").split(" ");
return n[n.length - 1];
}