I have an Object which is empty at the beginning,
var theList = {}
I need to populate it with random key value pairs and the final structure of the object should be like this:
theList{
id1{
fname: "some Name"
lname: "some Last Name"
}
id2{
fname: "some OTHER Name"
lname: "some OTHER Last Name"
}
...
...
...
}
**NOTE: ** the number "1" and "2" of id1 and id2 must be generated dynamically