Просто используйте объект с массивами, чтобы вернуть результаты.Кроме того, необходимо установить параметры счетчика циклов
function mojitor(startOfCount, endOfCount) {
var output = {
menthe : [],
glace : [],
rhum : [],
mentheGlace : [],
mojito : [],
};
for (var x=startOfCount; x <= endOfCount; x++){
if( x % 3 == 0 ){
output.menthe.push(x)
}
if( x % 5 == 0 ){
output.glace.push(x)
}
if( x % 7 == 0 ){
output.rhum.push(x)
}
if( ( x % 3 == 0 ) && ( x % 5 == 0 ) ){
output.mentheGlace.push(x)
}
if( ( x % 3 == 0 ) && ( x % 5 == 0 )&& ( x % 7 == 0 ) ){
output.mojito.push(x)
}
}
return output;
}
var result = mojitor(1, 110);
console.log('Menthe: ' + result.menthe); //"Menthe"
console.log('Glace: ' + result.glace); //"Glace"
console.log('Rhum: ' + result.rhum); //"Rhum"
console.log('MentheGlace: ' + result.mentheGlace); //"MentheGlace"
console.log('Mojito: ' + result.mojito); //"Mojito"