My main problem is that when I analyze the javascript i get the error “Label ‘{a}’ on {b} statement.” which I cannot find anything on google to explain . I don’t understand what it means and feel a bit stuck.
It’s giving you a weird error because you have a syntax error:
(document).ready(function(){
getQuotes().then(=>{
↑
here
You have a function without the () at the start that you use to wrap parameters. The error is related to labels, and the syntax error has caused it to think that there’s label somewhere in the code even though there isn’t.