Unlock this challenge:
Pretend we have a delicious new assets/img/smores.png file, and we want to add an img tag for it in templates/base.html.twig. How can we do that?
assets/img/smores.png
img
templates/base.html.twig
<img src="{{ asset('assets/img/smores.png') }}">
<img src="{{ importmap('img/smores.png') }}">
<img src="{{ asset('../assets/img/smores.png') }}">
<img src="{{ asset('img/smores.png') }}">