From the documentation, "To enumerate the stored key/value pairs" should be : ``` storage.forEach((key, value, index) => { }); ``` but when I use it, the valid syntaxe is : ``` storage.forEach((value, key, index) => { }); ```