Well, I am new to Firebase and I want to have my own keys while pushing new data to database.
Problem:
FireBase.push().setValue(mapped_values);
Calling push() will generate a key for you.
push()
If instead you use child(), you can determine they key/path yourself.
child()
ref.child("Victor").setValue("setting custom key when pushing new data to firebase database");