Write a function randomMinMax10(min, max) which calculates/returns a random integer number between min and max that is a multiple of 10 TIP: Use the formula Math.floor(Math.random() * (max - min + 1) + min) to calculate a random integer between min and max (both boundaries included)
Calculate a random width (multiple of 10 between 100 and 800) and height (multiple of 10 between 100 and 400) and use these dimensions to change the src attribute of the image every 5 seconds to https://picsum.photos/width/height (which provides a random image with the corresponding dimensions)
Show the path of the random image in the <h3> tag in the figcaption