I've got array model and I want to use its values  array separetaly, since flatMap is not available in my angular application without adding "esnext" to tsconfig.json file I was wondering if it's possible to do the same result without flatMap. Here's my current result: 
var model= [
        {
          "values": [
            {
              "colId": 1,
              "value": 7086083333.333333
            },
            {
              "colId": 2,
              "value": null
            },
          ],
          "rowId": 0,
        },
        {
          "values": [
            {
              "colId": 1,
              "value": null
            },
          ],
          "rowId": 1,
          "rowHeader": ""
        },
        {
          "values": [
            {
              "colId": 1,
              "value": null
            },
            {
              "colId": 2,
              "value": null
            },
          ],
          "rowId": 2,
          "rowHeader": ""
        }
      ]
     const data = model.flatMap((wm) => wm.values);
     console.log(data); 
    