//Remember to make your condition true outside the loop!
var soloLoop = function(){
var soloLoop = true;
while(soloLoop < 0) {
console.log(“Looped once!”);
soloLoop = false;
}
};
soloLoop(console.log);
The error asks me if “Did you log “Looped once!” to the console?”
I don’t understand because i already logged it into the console