var fruit = { color: "red", taste: "sweet", }; for (var i in fruit) { console.log(fruit[i]); }