% Creating an array scoreboard in MATLABscores = [80, 75, 90, 85, 88];
disp('Scores:');
disp(scores);
% Updating a specific scorescores(3) = 95;
disp('Updated Scores:');
disp(scores);
% Adding a new score to the arraynew_score = 79;
scores = [scores, new_score];
disp('Scores with New Score:');
disp(scores);
% Sorting the scores in ascending ordersorted_scores = sort(scores);
disp('Sorted Scores:');
disp(sorted_scores);