--- title: Find Characters with Lazy Matching --- ## Find Characters with Lazy Matching #### Challange: Fix the regex `/<.*>/` to return the HTML tag `

` and not the text `

Winter is coming

`. Remember the wildcard . in a regular expression matches any character. #### Solution: ```js let text = "

Winter is coming

"; let myRegex = /

?/; // it's the answer! let result = text.match(myRegex); ```