public static string Execute(string[] tokens) { // incorrect number of tokens? if (tokens.Length != 1) { return("[Error] You must provide a path to a variable/property retrieve."); } return(CommandHelpers.GetValue(tokens[0])); }