Hello,

I am attempting to set the max age of a cookie but the browser shows Expiration/Max-Age as "session":

Cookie cooky = new Cookie();
cooky.maxAge = 10;
cooky.value = "boo!";
res.cookies["my_cooky"] = cooky;
res.redirect("/index.html");

Am I missing a step ?

Thanks,
Josh