Scope of a variable and Parameter Passing

What would be the output of the following code:
PROCEDURE getArea(ByVal width, ByVal length)
     area = width * length
END PROCEDURE

width = 10
length = 20
getArea(width,length)
PRINT("Rectangle Area: " + area)