This kata is to provide a way to unflatten an array of items: Input: { "b": 3, "b.d.c": 13 } Output: { b: 3 , b: { d: { c: 13 } } }