I want to get a (Very large) array from another file so it doesn't take up space in my main js file but I cannot figure it out, I have spent about 2 - 3 days searching online but cannot find an answer that will work. I've tried answers from How to access js array defined in another js file aswell as many other sites but nothing is working.
// the js file with the array I want
wordList = [
"this",
"is",
"an",
"array"
]
// main js file
const word = wordList[Math.floor(Math.random() * wordList.length)];
Any help is appreciated :) EDIT: This is for a browser game if that helps