var DestCell = "C" & String(22 + (i * 4) );
I see this as a javascript code, and in javascript for string concat, '+' is used. Where you have used '&'.
Update it to :
var DestCell = "C" + String(22 + (i * 4) );
And debug or console log DestCell to ensure you have the expected value.