Tell us what’s happening:
i have done anything in my hnd even using grok but it allways says the recipe1 should have properties with thier values
Your code so far
const recipes = [];
const recipe1 = {
name: 'Spaghetti Carbonara',
// User Editable Region
ingredients: ['spaghetti', 'Parmesan cheese', 'pancetta', 'black pepper'],
ratings: [4, 5, 4, 5],
cookingTime: 22,
totalIngredients: null,
difficultyLevel: "",
averageRating: null
};
recipes.push(recipe1);
// User Editable Region
};
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36
Challenge Information:
Build a Recipe Tracker - Step 3