const fs = require(“fs”) Promise.all([ readFile(“./x.txt”), readFile(“./y.txt”), readFile(“./z.txt”) ]).then(function (data) { console.log(data) })