Challenge audio with audio element

I finished the course, but there’s an exercise that it is not validating. It tells me that the src is not the right one, however I checked it and over checked it and even did copy and paste of the address and still I’m not passing this.
Is it something I overlooked?

// running tests The value for the

src

attribute on the

source

tag should match the link in the instructions exactly. // tests completed

this is the code:


<body>
<header>
  <h1>Real Coding Ninjas</h1>
</header>
<main>
  <p>A sound clip of Zersiax's screen reader in action.</p>
<audio controls>
<source src:"https://s3.amazonaws.com/freecodecamp/screen-reader.mp3" type="audio/mpeg"/>
</audio>


</main>
</body>

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.106 Safari/537.36.

Challenge: Improve Accessibility of Audio Content with the audio Element

Link to the challenge:

Hello and welcome to the FCC community~!

You are trying to set the value of your src attribute using a :, which is not the correct syntax. :slight_smile:

Oh! thank you so much!!!