4. From A, B and C, which is the better way to copy the content of mainArray?

const mainArray = ['one', 'two', 'three', 'five', 'four'];

// A
const a = mainArray;

// B
const b = [ ...mainArray ];

// C
const c = [];
mainArray.forEach(item => {
  c.push(item);
});