Math.exp() problem

var blah=33;
trace("hardcode "+math.exp(33)+" withblah "+math.exp(blah));

output: hardcode 214643579785916 withblah undefined
why is it undefined?