This site is mobile accessible. Press the "Tap Here" button to use a smaller font-size.

Smartphone icons created by Freepik - Flaticon

JavaScript Arrays

The concat() Method

The concat() method merges (concatenates) arrays:

const myGirls = ["Cecilie", " Lone"];
const myBoys = [" Emil", " Tobias", " Linus"];
const myChildren = myGirls.concat(myBoys);

document.getElementById("demo").innerHTML = myChildren;