New to coding and getting errors in basic coding. Following a youtube tutorial for learning but getting the error even after coding the same way as shown in my tutorial video.
var age = prompt ("what is ur age?");
`If ( (age>= 18) && (age<= 35) ); {
var status = “my audience”;
console.log (status);}
else {
var status = “not intrested”;
console.log(status);
}`
Upon running the program, the error generated is Unexpected token ‘else’.