Same problem: The Promises only resolve after console.log already executed. You have to use .then for Promise.all so the console.log only gets executed after all the inner Promises resolved.
Same problem: You execute stuff in this.storageGet async, then execute console.log directly while it is not yet finished. You have to return the promise in storageGet you get from Promise.all and use then() on storageGet.
As I said in the thread that @auspicious linked to earlier, I think your code would be more performant as well as far easier to read, write, and maintain, if you would just combine all of these properties into a single JSON interface instead of storing them all separately.