We can do either string.split("1,2,3",",") or ("1,2,3"):split(",") and receive the same result.
string.split("1,2,3",",")
("1,2,3"):split(",")
Howe