You have to pass your helpers in array form. Here helper_1, helper_2, helper_3, helper_4 are different helpers that we want to load.

$this->load->helper(
    array('helper_1', 'helper_2', 'helper_3', 'helper_4')
);

BY Best Interview Question ON 13 Jan 2019