Edit in JSFiddle

let arr1 = ['a', 'b', 'c'];
let arr2 = [1, 2, 3];
mergedArr = [...arr2, ...arr1];
console.log('merged array', mergedArr);