I have a mapping between an address and an array of structs like this...
struct myStruct{
string name,
uint height
}
mapping (address=>myStruct[]) myMapping
if I access myMapping with an address key that hasn't been seen before, what gets returned?
e.g.
x = myMapping["unknownKey"];
What is in x? Is it 0 or [] or something else?