Tunjukkan setiap elemen array di baris yang berbeda

return dates.replace(",", "\n");
// OR 
return dates.split(',').join("\n")
Blyxyas