wp_register_script unable to link bootstrap JS

function load_js()
{
    wp_register_script('bootstrap', get_template_directory_uri() . '/js/bootstrap.min.js', array('jquery'), false, true );     
    wp_enqueue_script('bootstrap');
}
add_action('wp_enqueue_scripts', 'load_js');

Use with array('jquery') instead of 'jquery'

Refference here.
It says: use array.