Build a multi media player video with issue

type or paste code here
```hi. doing the multimedia player lab challenge. now the only issue i have. not liking the video width of the video. so what is the width of the video? any one able to help me out, as totally blind and cannot see. using  screen reader and cannot hear what it is the width. can any one help. paste the error and my code. where should the width attribute go. marvin.
ps: pasting below.

Failed:16. Your `video` element should have a `width` attribute with a value specifying the width of the video.
<!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="UTF-8">
        <title>Multimedia Player</title>
    </head>
    <body>
        <section>
<h1>Multimedia Player</h1>
<h2>Now Playing: Sailing Away</h2>
<audio  controls aria-label="Audio Player for Sailing Away">
<source src="https://cdn.freecodecamp.org/curriculum/js-music-player/sailing-away.mp3" type="audio/mpeg">    
<track src="captions.btt" kind="captions" srclang="en" label="English" />
</audio>
</section>
<section>
<h2>What is a map method and how does it work?</h2>
<video controls aria-label="What is the map method and how does it work?">
    <source src="https://cdn.freecodecamp.org/curriculum/labs/What is the map method and how does it work.mp4" width="500"  type="video/mp4">
    <track src="captions.btt" kind="captions" srclang="en" label="English" />
</video>
</section>
<section>
<h2>Transcript</h2>
<p>What is a map method and how does it work? The map method is a powerful and widely used function in JavaScriptthat operates on arrays. It's designedto create anew array by applying a given function to each element of the original array. This method does not modify the original array, but instead returns the new array containing the results of the function applied to each element.</p>
</section>
</body>
</html>

hi. got it working and passed. had the width attribute in the wrong place. had to google that and then look at an example.
so got it.
marvin.