Welcome to the Make community!
From your screenshot/output bundle, it appears that you have an ARRAY of items. What do you do when you have an array?
“Looping” Through Array Items
When you see an array in your module’s output, think of using an Iterator module.
In this example, this variable is an array of items (collections). You’ll want to map this array in an Iterator module.
Question: Have you tried mapping your array variable into an Iterator module, ran the scenario once, and view the output?
Next,
Combining Bundles Using Aggregators
Every result (item/record) from trigger/iterator/list/search/match modules will output a bundle. This can result in multiple bundles, which then trigger multiple operations in future modules (one operation per bundle). To “combine” multiple bundles into a single variable, you’ll need to use an aggregator of some sort.
Aggregators are modules that accumulate multiple bundles into one single bundle. An example of a commonly-used aggregator module is the Array aggregator module. The next popular aggregator is the Text Aggregator which is very flexible and can apply to many use-cases like building of JSON, CSV, HTML.
You can find out more about the other types of aggregator modules here:
Question: Which is the best aggregator do you think you’ll need for your use-case?
Example
Here is an example of how your scenario could look like:

Output
This is just an example. Your final solution may or may not look like this depending on your requirements and actual data.
For more information, see “Mapping with arrays” in the Help Centre. You should also do the Make Academy, which also covers the use of Iterators & Aggregators.
Module Export - quick import into your scenario
You can copy and paste this module export into your scenario. This will import the modules (with fields/settings/filters) shown in my screenshots above.
-
Move your mouse over the line of code below. Copy the JSON by clicking the copy button on the right of the code, which looks like this:

-
Enter your scenario editor. Press ESC to close any dialogs. Press CTRLV (paste keyboard shortcut for Windows) to paste directly in the editor.
-
Click on each imported module and re-save it for validation. There may be some errors prompting you to remap some variables and connections.
JSON module export — paste this directly in your scenario
{"subflows":[{"flow":[{"id":31,"module":"json:ParseJSON","version":1,"parameters":{"type":""},"mapper":{"json":"{\"PersonalInformation\":{\"FamilyName\":\"Tan\",\"GivenName\":\"Sing Show\",\"DateOfBirth\":\"1960-08-29\",\"Occupation\":\"Retired Teacher\",\"FamilyBackground\":{\"MaritalStatus\":{\"Id\":\"143-2\",\"Label\":\"Married\"},\"ChildrenInformation\":[{\"Id\":\"1haZa0\",\"FamilyName\":\"Tan\",\"GivenName\":\"Jun Jun\",\"DateOfBirth\":\"1989-02-01\",\"Gender\":{\"Id\":\"146-1\",\"Label\":\"F\"},\"FullName\":\"Tan Jun Jun\",\"Age\":36,\"ItemNumber\":1},{\"Id\":\"1ziQ2R\",\"FamilyName\":\"Tan\",\"GivenName\":\"May May\",\"DateOfBirth\":\"1992-09-09\",\"Gender\":{\"Id\":\"146-1\",\"Label\":\"F\"},\"FullName\":\"Tan May May\",\"Age\":33,\"ItemNumber\":2}]}}}"},"metadata":{"designer":{"x":1,"y":-1055,"name":"input bundle"},"parameters":[{"name":"type","type":"udt","label":"Data structure"}]}},{"id":32,"module":"builtin:BasicFeeder","version":1,"parameters":{},"mapper":{"array":"{{31.PersonalInformation.FamilyBackground.ChildrenInformation}}"},"metadata":{"designer":{"x":301,"y":-1055}}},{"id":33,"module":"util:TextAggregator","version":1,"parameters":{"rowSeparator":"other","otherRowSeparator":",","feeder":32},"mapper":{"value":"{\r\n \"child_name\": \"{{32.FullName}}\",\r\n \"FamilyName\": \"{{32.FamilyName}}\",\r\n \"GivenName\": \"{{32.GivenName}}\",\r\n \"DOB\": \"{{32.DateOfBirth}}\"\r\n}"},"metadata":{"designer":{"x":545,"y":-1055,"name":"Convert Children"},"parameters":[{"name":"rowSeparator","type":"select","label":"Row separator","validate":{"enum":["\n","\t","other"]}},{"name":"otherRowSeparator","type":"text","label":"Separator"}],"advanced":true}},{"id":34,"module":"util:ComposeTransformer","version":1,"parameters":{},"mapper":{"value":"{\r\n \"parent_name\": \"{{31.PersonalInformation.FamilyName}} {{31.PersonalInformation.GivenName}}\",\r\n \"FamilyName\": \"{{31.PersonalInformation.FamilyName}}\",\r\n \"GivenName\": \"{{31.PersonalInformation.GivenName}}\",\r\n \"children\": [ {{33.text}} ]\r\n}"},"metadata":{"designer":{"x":789,"y":-1056,"name":"Build JSON","messages":[{"category":"last","severity":"warning","message":"A transformer should not be the last module in the route."}]}}}]}],"metadata":{"version":1}}
Note: Did you know you can reduce the size of blueprints and module export code like the above, using the Make Blueprint Scrubber?
Hope this helps! Let me know if there are any further questions or issues. P.S.: investing some effort into the tutorials in the Make Academy will save you lots of time and frustration using Make!
— @samliew