Split an array into two array

I have an array or string, I am trying to split it into multiple arrays.

Input Array : {"One","Two","Three","Four","Five","Six","Seven","Eight","Nine","Ten"}

Output Array: { {"One","Two","Three","Four"},{"Five","Six","Seven","Eight"},{"Nine","Ten"} }

  Discussion posts and replies are publicly visible