Is it possible to use JavaScript to change the images in imageBox1 and imageBox2 simultaneously when clicking a button? For example, if I click "hello", I want image1-1 and image2-1 to be displayed together. And if I click "world", then image1-2 and image2-2 should display at the same time.
<div class = "Button">
<button type="button">hello</button>
<button type="button">world</button>
</div>
<div class = "imageBox1">
<img src="image1-1.jpg">
<img src="image1-2.jpg">
</div>
<div class = "imageBox2>
<img src="image2-1.jpg">
<img src="image2-2.jpg">
</div>