Patrick has created a Go program that takes as input his old favorite rapper firstName and lastName and then uses the function updateRapper to update the name of his favorite rapper within his Go program. However, when he tried to execute his program, his function couldn't update the values of the variables firstName and lastName.
Can you help Patrick fix the updateRapper function? He needs the function to specifically update firstName to Mac and lastName to Miller, as Mac Miller is his new favorite rapper.
Take notice that to solve this task, it is not necessary to change any code within the
main function; the objective is to fix the updateRapper function as it has errors in both the parameter type declaration and in the type of the variables used within it as well!