How might we call a function named choice() from a module named random?

import randomimport random from choiceimport choice

Perfect! We use the import keyword with the module name.

Yikes! We use the import keyword with the module name.