Plotting (6 pts):

What plot does MATLAB create?

x = 1:10;
y = ones(1,10)*5;
z = y+2;
apples = plot(x,y);
hold on
bananas = plot(x,z,'r^-');
legend([plot1,plot2], 'apples', 'bananas');
hold off