Hey, I see this Pilot needs a pro tip... here we go!
- **Hint 1:** The quickiest (although less elegant) technique here is using the same pointer to index of the previous exercise.
- **Hint 2:** A more elegant approach is to iterate through values of the JSON list using a Loop action, then compare the loop.item with the value you're interested in using a Condition action... and stop the loop when the match is there with a Break action.
- **Hint 3:** The most elegant (and difficult) path is to use Function.JQ. Given the upper key as the first value of the function, you need to point to the list of JSON objects in the array (.[]) on the left of the JQ, then pipe it through a "select(.manufacturer == \"Ford\")" statement that will extract the exact object you need.