Question: What can you export with module.exports?
- only objects.
 - only functions
 - only variables and arrays
 - functions, objects, arrays, or anything you assign to the module
 
Answer: The correct answer of the above question is Option D:functions, objects, arrays, or anything you assign to the module