Ionic angularfire need help please

Hey everyone. I had a Firebase Database see with structure (see Screenshot):

27

I want to output ( horro, action and Musikfilme) - how can I do it? my code is this:

this.fdb.list('/kategorien/').valueChanges().subscribe( data => {
      //Todo: output name not key 
      this.arrMedia =  Object.keys(data); 
      console.log("Medien: " + this.arrMedia);
    })

But I become only key ( 0, 1, 2) anyone have ideas?

I believe you should do

Object.values(data)

not

Object.keys(data)

I will test it :slight_smile: thankss