CommonJS vs ES Modules

What is true about the top-level await usage in these examples?
// CommonJS
const { readFile } = require('fs');
const data = readFile('file.txt');

// ES Modules
import { readFile } from 'fs';
const data = await readFile('file.txt');
Next Question (13/20)