To change the image of an <img> with id myImage, which option is correct?
<img>
myImage
<img id="myImage" src="image1.jpg">
_____
document.getElementById('myImage').image = 'image2.jpg'
document.querySelector('#myImage').image = 'image2.jpg'
document.getElementByTagName('img').src('image2.jpg')
document.getElementById('myImage').src = 'image2.jpg'