Suppose you have the Employee struct with two anonymous fields:
type Employee struct {
string
float64
}
Your task is to create the variable emp of the Employee struct type, and then assign values to each anonymous field of the struct; you can use any value you want so get creative! Just make sure to not change the declaration of the Employee struct.