Couchbase View's show Results not returning Array data

I am using Couchbase server Version: 4.5.0-2601 Enterprise Edition (build-2601) and my sample document looks like following

“abc”: [
“xyz, LP.”,
“CAL: FAT 9, CAR 4, PRO 4.”,
"*PER DAI VAL ARE BAS ON A 2,000 CAL.",
“NET 16 (4G).”,
]

When I run the show results against the view, i am not getting any results.

Map code is
function (doc, meta) {
emit(doc, null);
}

Seems array in the document giving issues here. Can any please guide how to resolve this.