const list = ["one", "two", "three"]; const result = list.join(" "); console.log(result); // "one two three"