I was Tweety, too. (Though I think Fry or maybe Brian the Dog would be more on my line)
For the curious, I believe there are five possibilities. Here they are, along with their descriptions:
// Tally up total.
if
(total<=17) {
text = "You are TAZ.\n\n"
+ "You are wild and crazy and you know it. You know how to have fun, \n"
+ "you may take it to extremes. You know what you are doing though,\n"
+ "and are much in control of your own life. People don't always see\n"
+ "things your way, but that doesn't mean that you should do away with\n"
+ "your beliefs. Try to remember that your wild spirit can lead to\n"
+ "hurting yourself and others."
}
else if (total<=26) {
text = "You are Bugs Bunny.\n\n"
+ "You are fun, friendly, and popular. You are a real crowd pleaser.\n"
+ "You have probably been out on the town your share of times, yet you\n"
+ "come home with the values that your mother taught you. Marriage and\n"
+ "children are important to you, but only after you have fun. Don't\n"
+ "let the people you please influence you to stray."
}
else if (total<=34) {
text = "You are Tweety.\n\n"
+ "You are cute, and everyone loves you. You are a best friend that\n"
+ "no one takes the chance of losing. You never hurt feelings and\n"
+ "seldom have your own feelings hurt. Life is a breeze. You are\n"
+ "witty, and calm most of the time. Just keep clear of back stabbers,\n"
+ "and you are worry-free."
}
else if (total<=42) {
text = "You are Peppe le Pew (without the smell).\n\n"
+ "You are a lover. Romance, flowers, and wine are all you need to\n"
+ "enjoy yourself. You are serious about all commitments. A family\n"
+ "person. You call your Mom every Sunday, and never forget a Birthday.\n"
+ "Don't let your passion for romance get confused with the real thing."
}
else if (total<=50) {
text = "Your are Speedy Gonzales.\n\n"
+ "You are smart, a real thinker. Every situation is approached with\n"
+ "a plan. You are very healthy in mind and body. You teach strong\n"
+ "family values. Keep your feet planted in them, but don't over look\n"
+ "a bad situation when it does happen."
}