OK I figured it out.
I had too many arrays within $the_user_query
This statement
$the_user_query = array(‘meta_query’ => array($arr));
just needed to be
$the_user_query = array(‘meta_query’ => $arr);
$arr didn’t need to be defined as an array again.
Hope this help someone else someday.