A phrase that cannot be well written

Hi Guys, this my function but it’s been half day that I try to get space through each words and couldn’t make it:

function apples (one, two)
{
document.write(one + “is better than” + two )
}
apples(“los angeles”, “miami”);

This is the actual phrase :

los angelesis better thanmiami

thanks for help

Hi @anitya,

If you want spaces, just do this:

one + “ is better than ” + two