------------------------------------------------------------------------------------------
DOCUMENT(); # This should be the first executable line in the problem.
loadMacros(
"PGstandard.pl",
"PGunion.pl",
"MathObjects.pl",
"PGML.pl",
"PGcourse.pl"
);
TEXT(beginproblem);
######################################################################
#
# The Setup
#
Context("Interval");
$a = random(-25,5,1);
$b = random(6,34,1);
$c = random(-13,0,1);
$d = random(1,55,1);
$I1 = Interval("([$a],[$b]]");
$I2 = Interval("($c,$d)");
######################################################################
#
# The Problem Text
#
BEGIN_PGML
This is [`[$l1]`] and this is [`[$l2]`]
END_PGML
######################################################################
ENDDOCUMENT(); # This should be the last executable line in the problem.
------------------------------------------------------------------
When I view this problem, the intervals do not show up. Do I need to do something extra so that intervals can take random variables?