String to Array for my options->streamer

jea but when i make this
var streamer = ["me1", "me2"];
he connect to me1 and me2

When i make this
var streamer = [];
request(“http://my.page.online/bot/streamer.php”, function(err, res, body) {
streamer = body.substr(0, body.length-2).split(", ");
});
//output for website = me1, me2,
//after substr =
//[ ‘me1’,
// ‘me2’ ]

i think is the same … but ok when i tell my website a “#” befor the name is this output
"
[ ‘#me1’,
#me2’ ]
"

doesnt work :frowning: