Step: Wildcard: [*]
Wildcard: [*]
The wildcard [*] (or its shorthand .*) matches every element of an array or every value of an object, regardless of key or index.
For example $.pets[*].name returns the name of every pet in the pets array, no matter how many there are.
Now write an expression that returns the name of every pet below.
Input:
Expected:
Step 8 of 9