Step: Deep scan: ..

Deep scan: ..

When you need to scan in each element of array or object use `..v.

For example if you have multiple car options you can query each option with .car.options[*].price or .car.options..price

Now can you print each pet's name for the JSON below.

Input:
{
  "firstName": "Charles",
  "lastName": "Doe",
  "pets": [
    {
      "name": "Bear",
      "kind": "dog"
    },
    {
      "name": "Jerry",
      "kind": "cat"
    }
  ]
}
Expected:
[
  "Bear",
  "Jerry"
]