function combine(split=",", ...args) { return args.join(split); } const str = `I love ${combine(";", "movie", "music", "sports")}`;