Tell us what’s happening:
I’m really stuck trying to complete sentence builder I can go no further as the moment I try to declare the variables for the second time I get this erro r “SyntaxError: unknown: Identifier ‘adjective’ has already been declared. (9:4)” any ideas as to what I am doing wrong would be really helpful. I am completely new at programming
Your code so far
let adjective = "fierce";
let noun = + "abbot"
let verb = "offended"
let place = "forest"
let adjective2 = "mammoth"
let noun2 = "beans"
const firstStory = "Once upon a time, there was a(n) " + adjective + " " + noun + " who loved to eat " + noun2 + ". The " + noun + " lived in a " + place + " and had " + adjective2 + " nostrils that blew fire when it was " + verb + ".";
console.log("First: " + firstStory);
let adjective = "unsightly"
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36
Challenge Information:
Build a Sentence Maker - Build a Sentence Maker