WordPress – need to fix enqueue script in functions.php

Solution:

function enqueue_my_scripts() {
wp_enqueue_script( ‘jquery’, ‘https://cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.3/jquery.easing.min.js’, array(‘jquery’), ‘1.3’, true);

}
add_action(‘wp_enqueue_scripts’, ‘enqueue_my_scripts’);
Can you try this