I have use this code and append value in div
var displayTags = [];
for (x = 0; x < response.item.displayTags.length; x++) {
var displayTagValue = response.item.displayTags[x].displayTagSlug;
displayTags.push(displayTagValue);
$('.publisher-TOPICS').append('<p class="publisher-option-description"> "' + displayTagValue + '"</p>');
But I have face a issue this data append
"witnesses"
"evidence"
"jury"
"jurors"
"persuade"
"trial-consultant"
"deposition"
How to append this data without double qoutes.