Tell us what’s happening:
After I run the code I keep getting. Syntax error on my c var saying unknown character but I’m using the quotes so I don’t understand if its me or the console that’s the issue please advise.
Your code so far
// Initialize these three variables
var a = 5;
var b = 10;
var c = “I am a”;
// Do not change code below this line
a = a + 1;
b = b + 5;
c = c + " String!";
Your browser information:
User Agent is: Mozilla/5.0 (iPad; CPU OS 12_1_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1.
You’re using “bendy” quotes, like the ones around the word “bendy”. This typically happens when you copy code from a forum like this one when it hasn’t used a fixed-width font. You need straight quotes "like this"
Sounds like the iPad is autocorrecting your quotes. I think there may be a setting that disables that, but my iPad is completely borked so I can’t say.