|
|
var words = [];
|
|
|
|
|
|
|
|
module.exports=
|
|
{
|
|
/**
|
|
* Returns a random word
|
|
* @returns {string}
|
|
*/
|
|
getRandomWord : function()
|
|
{
|
|
return '';
|
|
}
|
|
};
|