CommonJS vs ES Modules

What does this code demonstrate about the differences in export behavior?
// CommonJS
exports.value = 'hello';
exports = { value: 'world' }; // Doesn't work

// ES Modules
export let value = 'hello';
value = 'world'; // Works
Next Question (11/20)