`const [, city, zipCode] = address.match(cityZipCodeRegex);` This will error if the address doesn't match, but can be fixed with: `const [, city, zipCode] = address.match(cityZipCodeRegex) || [];`