/**
* This file is a module that gets imported for use in the module_import example
* it includes several functions and constants that get exported for use
*/exportconstMY_FAVOURITE_FOOD='saskatoonberries';letbook_list=[];exportfunctionaddBook(title){book_list.push(title)}exportfunctionlistBooks(){returnbook_list;}