Question: Which statement correctly imports this code from some-file.js?

  1. `import printMe from './some-file';`
  2. `import { printMe } from './some-file';`
  3. `import default as printMe from './some-file';`
  4. `const printMe = import './some-file';`

Answer: The correct answer of the above question is Option B:`import { printMe } from './some-file';`