From the title, you may be confused, Basically I have something like this:
module Example
ExampleArray = Array.new
ExampleArray[0] = {
"ExampleKey" => ["Stuff", "Stuff"]
}
ExampleArray[1] = {
"ExampleKey2" => ["Things", "Things"]
}
end
How do I go about changing the value of the keys, things i've tried:
ExampleArray[0]["ExampleKey"] = ["new", "value"]
Didn't work
I even tried changing the value of the key to a global variable, and editing that variable, didn't work.
Any help will be appreciated