I'm trying to import values of numbers from 1 to 20 to another js file [Index.js] here's my current code:
const what = {};
what. 1 = { number: 1 };
what. 2 = { number: 2};
what. 3 = { number: 3}
module.exports = what;
I have an error of: identifier expected
is there a way to fix this error? so I can import the values to my other script? please let me know :)