What’s printed? def carsSelect (carList, select = ‘all’)…

What’s printed? def carsSelect (carList, select = ‘all’):         matches = [ ]         for c in carList:                 if select == c[0] or select == ‘all’:                         matches.append(c[1])         return matches cars = [[‘Honda’, ‘2000 Civic’],             [‘Ford’, ‘2011 Focus’],             [‘Honda’, ‘2009 CRV’],             [‘Toyota’, ‘2012 RAV4’]] carsIwant = carsSelect(cars, ‘Honda’) for n in carsIwant:         print (n)