i have two object one is for just to hold answer of one question and another is final object. like
answer = {"value":"asda","indicator":"good"};
final = {} ;
i want to append answer object to final object like this
final = {{"value":"asda","indicator":"good"},{"value":"sdad","indicator":"worse"}}
How can i do that ?