Question: Which statement correctly imports this code from some-file.js?
- `import printMe from './some-file';`
 - `import { printMe } from './some-file';`
 - `import default as printMe from './some-file';`
 - `const printMe = import './some-file';`
 
Answer: The correct answer of the above question is Option B:`import { printMe } from './some-file';`