If your other data is not table-based, however, you'd have to issue 4 separate INSERT statements:
Currentdb.Execute "INSERT INTO YourTempTable(year, make, model) VALUES('2005','Dodge','Durango')"
Currentdb.Execute "INSERT INTO YourTempTable(year, make, model) VALUES('1998','Dodge','Grand Caravan')"
etc etc
Access cannot accept an array of values and iterate through and insert to fields, as other db engines can.