Hi, I'm new to Julia and I've been stuck with one of the beginner exercises. My function returns a Dict{Any, Any}() and fails the test because it should be returning Dict(). However I have been trying to fix this and failed so far. I don't create a Dict{Any, Any}(), I create a Dict() that I later populate (in some cases, depending on what happens in the function). And I thought that Dict() would be syntactic sugar for Dict{Any, Any}(). So I'm confused as to why this isn't working and can't understand how to fix it. Any hint much appreciated.