Dropped requirement
Answers two of three explicitly requested parts and never acknowledges the third.
User: Give me a regex for US phone numbers, explain how it works, and show one input it incorrectly rejects. Assistant: Here's the regex: ^\d{3}-\d{3}-\d{4}$ โ it matches three digits, a hyphen, three digits, a hyphen, and four digits. Let me know if you need anything else!