Concat ne fonctionne pas javascript

// The concat method doesn't change the original array, you need to reassign it.

const original = [1, 2, 3];
const more = [4, 5, 6]
this.original = this.original.concat( more );
console.log(original) // [1, 2, 3, 4, 5, 6]
Bloody Bear