Ionic pushing to firebase, child

Hello,

In this sample code i am pushing data to sample folder in my real time database. However i need an object where the imglinks are in a child in sample folder like images/imglink so i can go through the child object and show the images in a slider. How could i do this?

adatfeltolt() {
      this.firebasedb.list("/sample/")
      .push({
        name:this.nev,
        imglink:"",
        imglink2:"",
        imglink3:"",
        imglink4:""

      });
  }