Dynamic Imports (import())

What modern JavaScript module feature enables this pattern?
// Combining dynamic imports with top-level await
// (In an ES module)
const userLocale = navigator.language.split('-')[0] || 'en';

// Dynamically import the appropriate translation
const translations = await import(`./locales/${userLocale}.js`);

// App can use translations immediately
document.querySelector('#welcome').textContent = 
  translations.messages.welcome;
Next Question (28/43)