Hello David,
Thanks for asking. 
An easier alternative to integrate Tawk.to to your website would be to use there official WordPress plugin. I am sharing the relevant links that you can take a look.
https://www.tawk.to/knowledgebase/plugins-and-modules/add-a-tawk-to-widget-to-wordpress/
However, if you would like to go with the JS code option, then please add following code in child theme function.php file:
add_action( 'x_before_site_begin', 'chat_script' );
function chat_script(){
?>
<!-- chat_script code here -->
<?php
}
You can use following resources to download and setup child theme.
Download Child theme from following source: https://theme.co/apex/child-themes
Please take a look at following article to setup child theme:
https://theme.co/apex/forum/t/setup-how-to-setup-child-themes/57
Thanks.