Hello,

I have an array within an array and I want to determine if the entire array is empty or not. For example

Array(0) is Empty
Array(1)(0) has something
Array(1)(1) has something
Array(2) is Empty

How do I loop through the entire array and what condition should I use in my "if statement" to determine if it is empty? Thanks.