Problem in Level 9 Lesson 7 (Javascript)
let course = {
name: "JS Course",
duration : "15 hours",
price: 499,
discount: "100%"
};
for(key in course)
{
console.log(`${key} is ${course[key]}`);
}
This code is working properly but when I try to submit code it Shows "Complete the for loop code". Please help me with this problem.