Beneath is an instance of the primary dictionary (firstDict), and I need to embody it within the second dictionary (secondDict).
var firstDict = ["firstKeyFirstDict": ["firstValue", "secondValue"], "secondKey": ["firstValue", "secondValue"]]
And secondDict is simply one other Dictionary with basicn key values
var secondDict = ["firstKey": "nameValue", "secondKey": "scndValue"]
Now I need to have consequence once I nest first into one other like this
["firstKey": "nameValue", "secondKey": "scndValue", "firstKeyFirstDict": ["firstValue", "secondValue"], "secondKey": ["firstValue", "secondValue"]]