I'm trying to change
results = $("x", xmlResponse).map(function() {
to
results.push = $("x", xmlResponse).map(function() {
but doing so prevents any Autocomplete suggestions from appearing.
If I simply remove "push" again, the Autocomplete suggestions appear correctly with no issue.
How can I use results.push properly here?