Filling the blanks in the Go code block below so that it pro…

Filling the blanks in the Go code block below so that it produces the given expected output: var price int =10fmt.Println(“Price is $”, price)var taxRate float64 = 0.08var tax float64 = fmt.Println(“Tax is $”, tax)var total float64 = fmt.Println(“Total cost is $”, total)var availableFund int =120fmt.Println(availableFund, “dollars available.”)fmt.Println(“Within budget?”, ) Expected output: Price is $ 10 Tax is $ 0.8 Total cost is $ 10.8 120 dollars available. Within budget? true