function createModule(str1, str2) {
    this.greeting=str1;
    this.name=str2;
    this.sayIt=()=>this.greeting+', '+name;
    return this;
}