The console is not displaying the downloadurl, instead [object,Object] [screenshot image]1
this.dbs.collection("databases").get().toPromise().then((snapshot) => {
snapshot.docs.forEach(doc=>{
let name=doc.data().path;
this.down=this.storage.ref(name).getDownloadURL();
console.log(name);
console.log(this.down);
})