OK, 2 threads and some frustrated posting by you in your other thread on this subject, because no one understands your problem with local storage... However, your problem is nothing to do with the local storage, it's to do with putting a value into a variable from a retrieved save of an array (and putting that into a text object)!!
Lesson 1 - if you're stuck, provide a capx so people know what you're referring to.
Lesson 2 - if you're not sure what you're doing and you ask for help, try to understand the help you get, or see Lesson 1.
So, from your capx - you are not saving the global variables, just the array - which is ok. But you are using the global variables to update your text objects - unless you change something, the text objects and global variables will never be updated when the array json is loaded. Also, you are only updating your text object when a button is clicked, you should put that update into a function and call it when a button is clicked or if your saved data is retrieved (assuming you alter the events to save and retrieve the data you want).