const fs = require("fs"); fs.readFile("word_bank.txt", (err, data) => { if (err) throw err; console.log(data.toString()); });