I have some data in that i want to store in a hash. But don't have a key for each one of them ... Was thinking about generating a random key (string) and adding the value ... But I am not sure about how to generate those, neither if this is a good solution. I will be pleased to have some ideas. I am using javascript. For example, I have this:
{
mo: 'hi',
to: 'how are you?',
de: 'I am good',
re: 'Okay'
}
And then I want to add the value "What about you?" in the data above. I will have to add a key(any key). I saw THIS post which looks cool, but I would like something like a HASH.insertValue(value)
Thanks ...