--- title: Find Characters with Lazy Matching localeTitle: Encontrar personagens com correspondência preguiçosa --- ## Encontrar personagens com correspondência preguiçosa #### Desafio: Corrija o regex `/<.*>/` para retornar a tag HTML `

` e não o texto `

Winter is coming

` . Lembre-se do curinga. em uma expressão regular corresponde a qualquer caractere. #### Solução: ```js let text = "

Winter is coming

"; let myRegex = /

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