Error for creation of empty string in img attribute

Tell us what’s happening:
code was given correctly for an empty string but showung an error

Your code so far


<h1>Deep Thoughts with Master Camper Cat</h1>
<article>
  <h2>Defeating your Foe: the Red Dot is Ours!</h2>
  <p>To Come...</p>
</article>

<img src="samuraiSwords.jpeg",alt=" ">

<article>
  <h2>Is Chuck Norris a Cat Person?</h2>
  <p>To Come...</p>
</article>

Your browser information:

Attributes are separated by spaces, not by commas. Remove the , before alt. Also, I don’t think " " qualifies as an empty string. Use "" instead.