0 / 60 seg.

What will be the output of the following code?

const promise1 = Promise.resolve('Hello');
const promise2 = Promise.resolve('World');
Promise.all([promise1, promise2]).then((results) => {
  console.log(results.join(' '));
});