// arr = ["image/2.jpg", "image/1.jpg", "image/3.jpg"]
all_image.innerHTML = arr.map(img => `<img src="${img}">`).join('')
<picture>
<source media="(min-width: 64em)" src="high-res.jpg">
<source media="(min-width: 37.5em)" src="med-res.jpg">
<source src="low-res.jpg">
<img src="fallback.jpg" alt="This picture loads on non-supporting browsers.">
<p>Accessible text.</p>
</picture>
html = ''
for (key in result.category) {
html += `<p>${key}</p><select>`
for (key1 in result.category[key].family) {
html += `<option>${key1}</option>`
}
html += `</select>`
}