Linking javascript file to html file does not work

I am starting to learn JavaScript at the moment. In a course on YouTube the Tutor gave an example for linking a .js file to a .html file. Unfortunately it is not working. Can anyone tell me why?

index.html File:

<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>
<body>
<h1>Mello</h1>
<script> "sandbox.js" </script>


</body>
</html>

sandbox.js File:

alert("HELLO");