A student learning Python was trying to make a function. His code should concatenate a passed string name with string "Innokodakademija" and store it in a variable called result. He needs your help to fix this code.
name_string("Mubashir") ➞ "MubashirInnokodakademija"
name_string("Matt") ➞ "MattInnokodakademija"
name_string("python") ➞ "pythonInnokodakademija"