Write a function that computes the sum of all integers in an array that may contain nested arrays of integers. Your solution should use recursion to handle the nested structure.
For example:
[1, [2, 3], [[4], 5]]
15
The problem ties into the theme of recursion by walking through arbitrarily nested lists, much like tracing through layered holiday traditions. Enjoy solving this recursive challenge!
Good luck!