diff --git a/pages/en/learn/manipulating-files/reading-files-with-nodejs.md b/pages/en/learn/manipulating-files/reading-files-with-nodejs.md index fc90f66ce2db7..b3593bd6a6753 100644 --- a/pages/en/learn/manipulating-files/reading-files-with-nodejs.md +++ b/pages/en/learn/manipulating-files/reading-files-with-nodejs.md @@ -58,7 +58,7 @@ try { You can also use the promise-based `fsPromises.readFile()` method offered by the `fs/promises` module: -```js +```cjs const fs = require('node:fs/promises'); async function example() {