class graphClass { constructor(dataArray) { this.dataArray = dataArray; } createGraph() { // make the graphs liveGraphs.forEach((graph) => { graph.makeGraph(); }); } }