Task 1: replace null with the "name" element of the shopping list.
jq '.name' ,
Task 2: replace null with the count of the required ingredients.
(jq '.ingredients|length' shopping-list.json),
Task 3: replace null with the amount of sugar.
(jq '.ingredients[] | select(.item == "sugar").amount' shopping-list.json),
But Run Tests doesnt go thru,pls suggest what im doing wrong?