Wordpress - WordPress Hooks System
Identify the error in the following code snippet:
add_action('wp_head', 'my_function', 'high', 2);
function my_function($arg1, $arg2) {
echo $arg1 . $arg2;
}