I\'m working on a codecademy.com exercise where we use for-in statements to loop through an object and print hello in different languages by checking to see if the values of the
this is the for in value to work for me
for(var x in languages){
if(typeof languages[x] === "string"){ console.log(languages[x]); } else }