| 
  
   Menu 
  × 
      
    × 
      Correct! 
    Exercise:Use HTML DOM to change the value of the input field. 
<input type="text" id="myText" value="Hello">
<script>
document.getElementById("myText")@(6) = "Hello";
</script>
 
<input type="text" id="myText" value="Hello">
<script>
document.getElementById("myText").value = "Hello";
</script>
 
    Not CorrectClick here to try again. Correct!Next ❯ | 
This will reset the score of ALL 69 exercises.
Are you sure you want to continue?