how to call an array from another script in js code example
Example: how to get an array from another script in js
// SCRIPT WHERE THE ARRAY IS
var yourArray;
export{yourArray/*, OtherThingsYouWannaExport*/}
// SCRIPT WHERE WE NEED THE ARRAY
import * as chooseName from './TheNameOfYourScriptFile.js'
chooseName.yourArray; // You can now access the array