Pad concatenation points with one space when building strings.
// bad
var coolString = "Resource is a "+words.adjective+" company.";
// bad
var coolString = "Resource is a "+ words.adjective +" company.";
// good
var coolString = "Resource is a " + words.adjective + " company.";
Pad concatenation points with one space when building strings.