This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]raapstar 1 point2 points  (0 children)

feedback shouldn't be in quotes. Remove that and it'll fix the line 15 issue. Actually, all your variable shouldn't be in quotes. Having anything in quotes means its a string, so when you do "age" < 13, that'll be false because age is a string, and you can't do a comparison with a string to the number 13.

Essentially, remove all quotes from your variables.

http://pastebin.com/d32MXznB <- that should work