Dynamic Imports (import())

What does this code demonstrate about the import() function?
import('./module.js')
  .then(module => {
    module.doSomething();
  })
  .catch(error => {
    console.error('Failed to load module:', error);
  });
Next Question (2/43)