let array = ['one', 'two', 'three'] // These two are exactly the same console.log(...array) // one two three console.log('one', 'two', 'three') // one two three