let foundAnimal
for (animal in animals) {
  if (animal.type === 'cat') {
    foundAnimal = animal
    break;
  }
}