I'm doing a tutorial on code academy and I'm getting an error here saying "It looks like your function doesn't return 'Alas you do not qualify for a credit card. Capitalism is cruel like that.' when the income argument is 75." But that string is returned in the console (twice for some reason). I put it on their forum but I haven't got any response, anyone here got any suggestions?
var creditCheck = function(income) {
if (income >= 100){
return console.log("You earn a lot of money! You qualify for a credit card.");}
else {
return console.log("Alas you do not qualify for a credit card. Capitalism is cruel like that.");}
};
creditCheck (75);