I have (5) arrays. I'm trying to combine the (5) arrays into one array and then sum all the values together. I know with (2) arrays you can use the concat method but what about when you have (5) arrays?
const numArr = [132, 233, 5002, 3232, 3220];
const numArr2 = [123, 212, 535, 20, 2492];
const numArr3 = [90, 21, 32, 200, 71];
const numArr4 = [90, 16, 2, 200110, 12];
const numArr5 = [90, 21, 76, 240, 132];