Implement lodash.get

Enter the path to access properties within the object. Optionally, set a default value if the path doesn't exist.

Result:

""

Sample Object:

{
  "a": {
    "b": {
      "c": 42
    }
  }
}