Quote Machine error

https://codepen.io/seth-alan-burleson/pen/vYKPaej
This is the quote machine I’m building. I know it currently doesn’t put the quotes on the page, I’m getting to that part soon.

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.

It’s also const (lower case) not CONST, you have CONST QUOTES.

Thanks so much! really appreciate the help!~