I need to get this object:
{
  "1": {
    "epg": {
        "title1": "TITLE",
        "start1": "10:00",
        "stop1": "12:50",
        "description1": "DESC",
        "percent1": "17",
        "step1": "2"
    }
},
  "2": {
    "epg": {
        "title2": "TITLE",
        "start2": "13:50",
        "stop2":  "14:00",
        "description2": "DESC",
        "percent2": "-262",
        "step2": "7"
    }
  }
}
I write this code:
/* MAKE - 5 shows epg */
for (i = 0; i < 2; i++) {
     data.push( {i: {"epg": {"title1": "", "start1": "", "stop1": "", "description1": "", "percent1": "", "step1": ""}}} );
};
/* SEND - 5 shows epg */
res.json(data);
And i get this output:
[{"i":{"epg":{"title1":"","start1":"","stop1":"","description1":"","percent1":"","step1":""}}},{"i":{"epg":{"title1":"","start1":"","stop1":"","description1":"","percent1":"","step1":""}}}]
And that is incorrect...could you please give me hint of function or how to do it.