for (let i = 0; i < arrayfirst.length; i++){
parseInt(arrayfirst[i]);
parseInt(arraysecond[i]);
arrayfirst[i] += arraysecond[i];
}
I parseInt the arrays but they are still concatenating, I even tried parseInt-ing the entire the equation but it just resulted in my code not working.