1 const recipeData = {
2 id: Math.ceil(Math.random()*1000000), //randomly generated id
3 title: this.title,
4 description: this.description,
5 imageUrl: this.imageUrl,
6 ingredientsName: this.ingredientsName,
7 ingredientsQuantity: this.ingredientsQuantity
8 };
9