Is it possible to pass an array as a parameter to an SQL query to retrieve data from an Access database?

I'll be building an array in Excel that contains one to many values. These values will be used as arguments to select records from the database which will then be imported to Excel. Example. A field in a customer (Access) table is 'zip' code, which is part of the customer's address. I want to select all of the customers who are in the list of zip codes that are passed as an array parameter. If only one zip code, then I want all customers in that zip code. If more than one zip code, then I want all customers in all those zip codes.

Thanks.