How does module.exports work for an object without keys? For example, if I have in test.js
const two = 2;
const three = 3;
module.exports = {two, three};    // Is the right-hand side an object? If so, where are its keys?
                                  // It doesn't look like it's object destructuring.
and in app.js
const test = require("./test");
console.log(test.two);            // 2
console.log(test.three);          // 3
 
    