# Pastebin BpaUUxGQ appendWord(word: string | null) { if (word === ' ') { this.gc.output.appendSpace(); } else if (word !== '' && word != null) { this.wordList.push(word); } }