We have a data stream that is displaying times in GMT. We would like to changed multiple to CST (-6 hours).

I see the Date functions in Arcade might work.
https://developers.arcgis.com/arcade/function-reference/date_functions/#tolocal
DateAdd shows this
var startDate = Date($feature.dateField);
var oneWeekLater = DateAdd(startDate, 7, 'days');
return oneWeekLater;
Can I change that to
var startDate = Date($feature.dateField);
var Sixhoursago = DateAdd(startDate, -6, 'hours');
return Sixhoursago;

I want to change all these fields.
