Get data from firebase

i want too get data from firebase can you please help me with writing a simple code

getDataFromFirebase(){

  this.afd.list('https://workout-63cc2.firebaseio.com/').valueChanges().subscribe(
    data=>{
      console.log(JSON.stringify(data));
      this.items=data;
    }
  );

}