Implement the function concatenateArrays in helper.js

It should return a new array that has the second array “glued” to the end of the first one

Example: concatenateArrays([1,2,3], [1,2,4]) returns [1,2,3,1,2,4]

This task is part of the Full-Stack JavaScript Course
If you have any issues with it, you can ask for community help below the post
Feel free to help others if you’ve already solved the task

helper.js

export const concatenateArrays = (arr1, arr2) => {
  return [];
}

solution.js

/**
 * Implement function concatenateArrays in helper.js
 *
 * It should return a new array that "glues" the second array to the end of the first one
 *
 * Example: concatenateArrays([1,2,3], [1,2,4]) returns [1,2,3,1,2,4]
 * */

import { concatenateArrays } from './helper.js';

const original = [ 10, 10, 1, 5, 12, 15 ];
const fake = [ 10, 10, 20, 55, 5, 5, 12, 100, 200 ];

console.log(`The concatenation of ${original} and ${fake}, is ${concatenateArrays(original, fake)}`);