const spreadIntoArray = [ 'item 1', 'item 2', ...moreItems, // Always put this last comma. ] // No semicolon needed. const spreadIntoObject = { ...aFewProps, ...someProps, // Always put this last comma. } // No semicolon needed.