Finish the method definition below.
manufacturers
is an array of hashes, each hash representing a car manufacturer, with three keys "name", "region", and "cars". "cars" itself is an array of strings, each string representing a car model.
Given manufacturers
and a region
, the method should filter the manufacturers to only those that are made in the given region, and return the array of cars
for each manufacturer.