I found the following [example ](https://github.com/ryanmcdermott/clean-code-javascript)hard to understand. Especially on this part: ```js const [, city, zipCode] = address.match(cityZipCodeRegex) || []; ``` It might be a valuable addition to simplify or elaborate a bit more on it.