In level 6 lesson 8 what is the expected outcome.I am writing the correct code but it is showing not matching with expected outcome.
package main
import "fmt"
func areaOfRect(length float64, breadth float64) float64 {
// write code here
return length*breadth
}
func main() {
area := areaOfRect(7,9)
fmt.Println("Area of Rectangle is: ", area)
}