Заменить - с пространством

let str = "This-is-a-news-item-";
str = str.replace(/-/g, ' ');
alert(str);
Wide-eyed Willet