Copy this code and paste it in your HTML
$customFieldList = $currentRecord->getField('customFieldList')->getField('customField');
$lastField = end($customFieldList);
foreach($customFieldList as $field) {
echo "\t'".$field->getField('internalId')."' => ''";
if($field != $lastField) echo ",";
}