How to combine object const to be displayed in modal from API?

You have to concat 2 strings. In Javascript, you could do it with + operator like that:

image.alt = result.title + ' ' + result.explanation;

As you see in the example, I've also added ' ' which is space between two values.