Create a class called Rectangle with a constructor that sets width and height properties. Inside the constructor, add a calculateArea method that returns the area of the rectangle.
Hint: You can find the area of a rectangle by multiplying width by height.