What will be the result of the following code:
Please, enter the output of the code in the answer box below
var number interface{} = 2022
switch number.(type) {
case nil:
fmt.Println("number is a nil type")
case int:
fmt.Print("number is an int type")
case string:
fmt.Println("number is a string type")
default:
fmt.Println("type is not defined")
}