Auto-complete or auto-suggest from stored data in database

First off, you’re not quite enqueuing the scripts correctly.

The first argument should be a unique name for that script (not all ‘newscript’).
Also, you’re enqueuing jquery twice.
I’m not certain where you’re storing your files, but at least the last path is incorrect.
Finally, the third argument is to let WordPress know if the script that you’re enqueuing is dependent on another script. jQuery UI and jQuery Autocomplete are dependent on jQuery, so you have those ones correct. The others are not needed.

In addition, WordPress already has jQuery, so you don’t need to enqueue another copy of it.

This should get you a little closer anyway:

wp_enqueue_script('jquery'); //Because it ships with WordPress
wp_enqueue_script('jquery-ui', get_template_directory_uri() . 'js/jquery-ui.js',array( 'jquery' )); 
wp_enqueue_script('autocomplete', 'https://cdnjs.cloudflare.com/ajax/libs/jquery.devbridge-autocomplete/1.2.26/jquery.autocomplete.js',array( 'jquery' ));

WordPress also ships with parts of jQuery UI and other helpful scripts. You can see the whole list and how to enqueue them here: https://developer.wordpress.org/reference/functions/wp_enqueue_script/