1. function setChinese(text){
    2. let newText = ''
    3. for (let i = 0; i < text.length; i++) {
    4. newText = newText+text.charAt(i).replace(",", ",")
    5. }
    6. return newText
    7. }