when I:
store “one” in local_storage1 with key “thisisit”
store “two” in local_storage2 with key “thisisit” (the same key)
when I:
retrieve key “thisisit” from local_storage1 the result is “two”
retrieve key “thisisit” from local_storage2 the result is “two”
The result from local_storage1 should be “one” because I am using different local_storages
What is happening?