Create a function that returns the original value from an array with too many sub-arrays.
de_nest([[[[[[[[[[[[3]]]]]]]]]]]]) ➞ 3
de_nest([[[[[[[true]]]]]]]) ➞ true
de_nest([[[[[[[[[[[[[[[[["edabit"]]]]]]]]]]]]]]]]]) ➞ "edabit"You only need to retrieve one element.