Create a function calculateNaturalLog
such that,
- It accepts an array of numbers as its parameter.
- It checks if all elements in the array are positive.
- If any element is zero or negative, returns the string Input array must contain only positive numbers..
- If all elements are positive, it returns an array of their natural logarithms.
For example,