I used the following code to fetch JSON data which was a success. I initialized a global array and stored one unit of that data in an array. Now somewhere in my code, there is an array nested inside an object how do I pass this array there?
var myRequest = new Request("https://script.googleusercontent.com/macros/echo?user_content_key=KW75vuIX25SoStm_K2HLVQNBRF2fx_5URDdL-vYJfUSTBaOAlMkJeWc25wjo5zdMLaznziyuqNd4B5kNs8k3tH0OxgnfssPwm5_BxDlH2jW0nuo2oDemN9CCS2h10ox_1xSncGQajx_ryfhECjZEnIFtsXaNuh0rFflir-T-GWuA8AvQ2kUI-jEwpZssg8RaEHh5W9MAfgDGMRkNsN06wEWY2nZ7HPw5&lib=M_p61mp1Qy6uGkXTBzlj4kloBXIZCdEN3")
fetch(myRequest)
.then(function(res){
    return res.json();
})
.then(function(data){
    for(var i=0;i<400;i++)
    {
        arr[i]=data.user[i].battingScore;
    }
    return arr;
});
This is where I want to use the arr:
 document.addEventListener('DOMContentLoaded', function () {
document.addEventListener('DOMContentLoaded', function () {
    var myChart3 = Highcharts.chart('c', {
    title: {
        text: 'Logarithmic axis demo'
    },
    xAxis: {
        tickInterval: 1,
        type: 'logarithmic'
    },
    yAxis: {
        type: 'logarithmic',
        minorTickInterval: 0.1
    },
    tooltip: {
        headerFormat: '<b>{series.name}</b><br />',
        pointFormat: 'x = {point.x}, y = {point.y}'
    },
    series: [{
        data:[],                               //here
        pointStart: 1
    }]
});
});
});
Note: Here, series is an array of objects but is an attribute of hello object. I want the values of arr inside data which is an array. How to do that?
 
    