CINXE.COM
Home - CBBC Newsround
<!DOCTYPE html><html lang="en" class="b-pw-1280 b-reith-sans-font no-touch no-js"><head><script type="text/javascript" src="https://web-static.archive.org/_static/js/bundle-playback.js?v=7YQSqjSh" charset="utf-8"></script> <script type="text/javascript" src="https://web-static.archive.org/_static/js/wombat.js?v=txqj7nKC" charset="utf-8"></script> <script>window.RufflePlayer=window.RufflePlayer||{};window.RufflePlayer.config={"autoplay":"on","unmuteOverlay":"hidden"};</script> <script type="text/javascript" src="https://web-static.archive.org/_static/js/ruffle/ruffle.js"></script> <script type="text/javascript"> __wm.init("https://web.archive.org/web"); __wm.wombat("https://www.bbc.co.uk/newsround","20200531140253","https://web.archive.org/","web","https://web-static.archive.org/_static/", "1590933773"); </script> <link rel="stylesheet" type="text/css" href="https://web-static.archive.org/_static/css/banner-styles.css?v=p7PEIJWi" /> <link rel="stylesheet" type="text/css" href="https://web-static.archive.org/_static/css/iconochive.css?v=3PDvdIFv" /> <!-- End Wayback Rewrite JS Include --> <script> window.orb_fig_blocking = false window.bbcredirection = { geo: false, device: false }; </script> <!-- Environment: live --> <!-- Orbit: 3.0.0-928.02ebe6e5 --> <!-- Analytics Web Module: 0.0.2-456.e308d0a --> <!-- NavID Web Module: 0.2.0-2.0a947fa --> <!-- User Activity Helper Web Module: 1.0.0-56.3dd0561 --> <!-- Cookie Banner Web Module: 0.0.2-456.e308d0a --> <!-- Searchbox Web Module: 3.0.0-99.7c56696 --> <!-- Promo Web Module: 3.0.0-126.894b3f6 --> <meta name="viewport" content="width=device-width, initial-scale=1.0"><meta property="fb:admins" content="100004154058350"><link rel="stylesheet" href="https://web.archive.org/web/20200531140253cs_/https://nav.files.bbci.co.uk/orbit/1d3c7747a3c32f8f7dcb5ca089209136/css/orb-ltr.min.css"><!--[if (lt IE 9) & (!IEMobile)]> <link rel="stylesheet" href="https://nav.files.bbci.co.uk/orbit/1d3c7747a3c32f8f7dcb5ca089209136/css/orb-ie-ltr.min.css"> <![endif]--><script type="text/javascript">/*<![CDATA[*/ window.orb = { lang: 'en', bbcBaseUrl: 'https://web.archive.org/web/20200531140253/https://www.bbc.co.uk', bbcUrlPrefix: 'https://web.archive.org/web/20200531140253/https://www.', staticHost: 'https://web.archive.org/web/20200531140253/https://nav.files.bbci.co.uk/orbit/1d3c7747a3c32f8f7dcb5ca089209136', figUrl: 'https://web.archive.org/web/20200531140253/https://fig.bbc.co.uk/frameworks/fig/2/fig.js', partialCookieOvenUrl: 'https://web.archive.org/web/20200531140253/https://cookie-oven.api.bbc' }; document.documentElement.className += (document.documentElement.className? ' ' : '') + 'orb-js'; window.orb.worldwideNavlinks = ''; /*]]>*/</script><script>// Promise polyfill from https://github.com/bramstein/promis (function(){'use strict';var f,g=[];function l(a){g.push(a);1==g.length&&f()}function m(){for(;g.length;)g[0](),g.shift()}f=function(){setTimeout(m)};function n(a){this.a=p;this.b=void 0;this.f=[];var b=this;try{a(function(a){q(b,a)},function(a){r(b,a)})}catch(c){r(b,c)}}var p=2;function t(a){return new n(function(b,c){c(a)})}function u(a){return new n(function(b){b(a)})}function q(a,b){if(a.a==p){if(b==a)throw new TypeError;var c=!1;try{var d=b&&b.then;if(null!=b&&"object"==typeof b&&"function"==typeof d){d.call(b,function(b){c||q(a,b);c=!0},function(b){c||r(a,b);c=!0});return}}catch(e){c||r(a,e);return}a.a=0;a.b=b;v(a)}} function r(a,b){if(a.a==p){if(b==a)throw new TypeError;a.a=1;a.b=b;v(a)}}function v(a){l(function(){if(a.a!=p)for(;a.f.length;){var b=a.f.shift(),c=b[0],d=b[1],e=b[2],b=b[3];try{0==a.a?"function"==typeof c?e(c.call(void 0,a.b)):e(a.b):1==a.a&&("function"==typeof d?e(d.call(void 0,a.b)):b(a.b))}catch(h){b(h)}}})}n.prototype.g=function(a){return this.c(void 0,a)};n.prototype.c=function(a,b){var c=this;return new n(function(d,e){c.f.push([a,b,d,e]);v(c)})}; function w(a){return new n(function(b,c){function d(c){return function(d){h[c]=d;e+=1;e==a.length&&b(h)}}var e=0,h=[];0==a.length&&b(h);for(var k=0;k<a.length;k+=1)u(a[k]).c(d(k),c)})}function x(a){return new n(function(b,c){for(var d=0;d<a.length;d+=1)u(a[d]).c(b,c)})};window.Promise||(window.Promise=n,window.Promise.resolve=u,window.Promise.reject=t,window.Promise.race=x,window.Promise.all=w,window.Promise.prototype.then=n.prototype.c,window.Promise.prototype["catch"]=n.prototype.g);}()); // Polyfill Event constructor for IE ref: https://jira.dev.bbc.co.uk/browse/ORBITEN-919 // see: https://stackoverflow.com/questions/26596123 (function () { if (typeof window.CustomEvent === "function") { return false; } function CustomEvent(event, params) { params = params || { bubbles: false, cancelable: false, detail: undefined }; var evt = document.createEvent('CustomEvent'); evt.initCustomEvent(event, params.bubbles, params.cancelable, params.detail); return evt; } CustomEvent.prototype = window.Event.prototype; window.Event = CustomEvent; })(); //Element.prototype.matches polyfill //from https://developer.mozilla.org/en-US/docs/Web/API/Element/matches#Polyfill if (!Element.prototype.matches) { Element.prototype.matches = Element.prototype.msMatchesSelector || Element.prototype.webkitMatchesSelector; } //NodeList.forEach Polyfill //from https://developer.mozilla.org/en-US/docs/Web/API/NodeList/forEach#Polyfill if (window.NodeList && !NodeList.prototype.forEach) { NodeList.prototype.forEach = Array.prototype.forEach; } // Object.assign polyfill from https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/assign#Polyfill if (typeof Object.assign != 'function') { // Must be writable: true, enumerable: false, configurable: true Object.defineProperty(Object, "assign", { value: function assign(target, varArgs) { // .length of function is 2 'use strict'; if (target == null) { // TypeError if undefined or null throw new TypeError('Cannot convert undefined or null to object'); } var to = Object(target); for (var index = 1; index < arguments.length; index++) { var nextSource = arguments[index]; if (nextSource != null) { // Skip over if undefined or null for (var nextKey in nextSource) { // Avoid bugs when hasOwnProperty is shadowed if (Object.prototype.hasOwnProperty.call(nextSource, nextKey)) { to[nextKey] = nextSource[nextKey]; } } } } return to; }, writable: true, configurable: true }); } // window.fetch polyfill https://github.com/github/fetch/blob/v0.11.0/fetch.js - chosen for IE9 compatibility if(typeof window.fetch !== 'function') { (function(self){"use strict";if(self.fetch){return}function normalizeName(name){if(typeof name!=="string"){name=String(name)}if(/[^a-z0-9\-#$%&'*+.\^_`|~]/i.test(name)){throw new TypeError("Invalid character in header field name")}return name.toLowerCase()}function normalizeValue(value){if(typeof value!=="string"){value=String(value)}return value}function Headers(headers){this.map={};if(headers instanceof Headers){headers.forEach(function(value,name){this.append(name,value)},this)}else if(headers){Object.getOwnPropertyNames(headers).forEach(function(name){this.append(name,headers[name])},this)}}Headers.prototype.append=function(name,value){name=normalizeName(name);value=normalizeValue(value);var list=this.map[name];if(!list){list=[];this.map[name]=list}list.push(value)};Headers.prototype["delete"]=function(name){delete this.map[normalizeName(name)]};Headers.prototype.get=function(name){var values=this.map[normalizeName(name)];return values?values[0]:null};Headers.prototype.getAll=function(name){return this.map[normalizeName(name)]||[]};Headers.prototype.has=function(name){return this.map.hasOwnProperty(normalizeName(name))};Headers.prototype.set=function(name,value){this.map[normalizeName(name)]=[normalizeValue(value)]};Headers.prototype.forEach=function(callback,thisArg){Object.getOwnPropertyNames(this.map).forEach(function(name){this.map[name].forEach(function(value){callback.call(thisArg,value,name,this)},this)},this)};function consumed(body){if(body.bodyUsed){return Promise.reject(new TypeError("Already read"))}body.bodyUsed=true}function fileReaderReady(reader){return new Promise(function(resolve,reject){reader.onload=function(){resolve(reader.result)};reader.onerror=function(){reject(reader.error)}})}function readBlobAsArrayBuffer(blob){var reader=new FileReader;reader.readAsArrayBuffer(blob);return fileReaderReady(reader)}function readBlobAsText(blob){var reader=new FileReader;reader.readAsText(blob);return fileReaderReady(reader)}var support={blob:"FileReader"in self&&"Blob"in self&&function(){try{new Blob;return true}catch(e){return false}}(),formData:"FormData"in self,arrayBuffer:"ArrayBuffer"in self};function Body(){this.bodyUsed=false;this._initBody=function(body){this._bodyInit=body;if(typeof body==="string"){this._bodyText=body}else if(support.blob&&Blob.prototype.isPrototypeOf(body)){this._bodyBlob=body}else if(support.formData&&FormData.prototype.isPrototypeOf(body)){this._bodyFormData=body}else if(!body){this._bodyText=""}else if(support.arrayBuffer&&ArrayBuffer.prototype.isPrototypeOf(body)){}else{throw new Error("unsupported BodyInit type")}if(!this.headers.get("content-type")){if(typeof body==="string"){this.headers.set("content-type","text/plain;charset=UTF-8")}else if(this._bodyBlob&&this._bodyBlob.type){this.headers.set("content-type",this._bodyBlob.type)}}};if(support.blob){this.blob=function(){var rejected=consumed(this);if(rejected){return rejected}if(this._bodyBlob){return Promise.resolve(this._bodyBlob)}else if(this._bodyFormData){throw new Error("could not read FormData body as blob")}else{return Promise.resolve(new Blob([this._bodyText]))}};this.arrayBuffer=function(){return this.blob().then(readBlobAsArrayBuffer)};this.text=function(){var rejected=consumed(this);if(rejected){return rejected}if(this._bodyBlob){return readBlobAsText(this._bodyBlob)}else if(this._bodyFormData){throw new Error("could not read FormData body as text")}else{return Promise.resolve(this._bodyText)}}}else{this.text=function(){var rejected=consumed(this);return rejected?rejected:Promise.resolve(this._bodyText)}}if(support.formData){this.formData=function(){return this.text().then(decode)}}this.json=function(){return this.text().then(JSON.parse)};return this}var methods=["DELETE","GET","HEAD","OPTIONS","POST","PUT"];function normalizeMethod(method){var upcased=method.toUpperCase();return methods.indexOf(upcased)>-1?upcased:method}function Request(input,options){options=options||{};var body=options.body;if(Request.prototype.isPrototypeOf(input)){if(input.bodyUsed){throw new TypeError("Already read")}this.url=input.url;this.credentials=input.credentials;if(!options.headers){this.headers=new Headers(input.headers)}this.method=input.method;this.mode=input.mode;if(!body){body=input._bodyInit;input.bodyUsed=true}}else{this.url=input}this.credentials=options.credentials||this.credentials||"omit";if(options.headers||!this.headers){this.headers=new Headers(options.headers)}this.method=normalizeMethod(options.method||this.method||"GET");this.mode=options.mode||this.mode||null;this.referrer=null;if((this.method==="GET"||this.method==="HEAD")&&body){throw new TypeError("Body not allowed for GET or HEAD requests")}this._initBody(body)}Request.prototype.clone=function(){return new Request(this)};function decode(body){var form=new FormData;body.trim().split("&").forEach(function(bytes){if(bytes){var split=bytes.split("=");var name=split.shift().replace(/\+/g," ");var value=split.join("=").replace(/\+/g," ");form.append(decodeURIComponent(name),decodeURIComponent(value))}});return form}function headers(xhr){var head=new Headers;var pairs=xhr.getAllResponseHeaders().trim().split("\n");pairs.forEach(function(header){var split=header.trim().split(":");var key=split.shift().trim();var value=split.join(":").trim();head.append(key,value)});return head}Body.call(Request.prototype);function Response(bodyInit,options){if(!options){options={}}this.type="default";this.status=options.status;this.ok=this.status>=200&&this.status<300;this.statusText=options.statusText;this.headers=options.headers instanceof Headers?options.headers:new Headers(options.headers);this.url=options.url||"";this._initBody(bodyInit)}Body.call(Response.prototype);Response.prototype.clone=function(){return new Response(this._bodyInit,{status:this.status,statusText:this.statusText,headers:new Headers(this.headers),url:this.url})};Response.error=function(){var response=new Response(null,{status:0,statusText:""});response.type="error";return response};var redirectStatuses=[301,302,303,307,308];Response.redirect=function(url,status){if(redirectStatuses.indexOf(status)===-1){throw new RangeError("Invalid status code")}return new Response(null,{status:status,headers:{location:url}})};self.Headers=Headers;self.Request=Request;self.Response=Response;self.fetch=function(input,init){return new Promise(function(resolve,reject){var request;if(Request.prototype.isPrototypeOf(input)&&!init){request=input}else{request=new Request(input,init)}var xhr=new XMLHttpRequest;function responseURL(){if("responseURL"in xhr){return xhr.responseURL}if(/^X-Request-URL:/m.test(xhr.getAllResponseHeaders())){return xhr.getResponseHeader("X-Request-URL")}return}xhr.onload=function(){var status=xhr.status===1223?204:xhr.status;if(status<100||status>599){reject(new TypeError("Network request failed"));return}var options={status:status,statusText:xhr.statusText,headers:headers(xhr),url:responseURL()};var body="response"in xhr?xhr.response:xhr.responseText;resolve(new Response(body,options))};xhr.onerror=function(){reject(new TypeError("Network request failed"))};xhr.open(request.method,request.url,true);if(request.credentials==="include"){xhr.withCredentials=true}if("responseType"in xhr&&support.blob){xhr.responseType="blob"}request.headers.forEach(function(value,name){xhr.setRequestHeader(name,value)});xhr.send(typeof request._bodyInit==="undefined"?null:request._bodyInit)})};self.fetch.polyfill=true})(typeof self!=="undefined"?self:this); } if (typeof window.CustomEvent !== 'function') { function CustomEvent(event, params) { params = params || { bubbles: false, cancelable: false, detail: null }; var evt = document.createEvent('CustomEvent'); evt.initCustomEvent(event, params.bubbles, params.cancelable, params.detail); return evt; } CustomEvent.prototype = window.Event.prototype; window.CustomEvent = CustomEvent; } (function() { var language = 'en'; language = 'en'; var modal = false; var istatsLabels = {name: 'newsround' || undefined}; istatsLabels['bbc_site'] = 'cbbc'; istatsLabels['app_name'] = 'newsround'; istatsLabels['app_type'] = 'responsive'; istatsLabels['page_type'] = 'home'; istatsLabels['children_show'] = 'newsround'; function getMetaValue(propertyName) { var metaTag = document.querySelector( "meta[property='" + propertyName + "'], " + "meta[name='" + propertyName + "']"); if (metaTag) { return metaTag.getAttribute("content"); } else { throw new Error('No meta tag called: ' + propertyName) } } function generateCountername() { if (window.location.protocol === 'file:') { return 'local.file'; } var pathName = window.location.pathname .replace(/\/$/, "") .replace(/^\//, "") .replace(/\//g, '.'); return pathName + '.page'; } var additionalPageProperties = {}; additionalPageProperties['app_name'] = 'newsround'; additionalPageProperties['custom_var_1'] = ''; additionalPageProperties['custom_var_2'] = ''; additionalPageProperties['custom_var_5'] = 'cps'; additionalPageProperties['custom_var_7'] = 'newsround'; additionalPageProperties['custom_var_8'] = ''; additionalPageProperties['custom_var_9'] = ''; var page = { name: 'newsround.page' || istatsLabels.name || generateCountername(), destination: 'NEWSROUND' || null, producer: 'NEWSROUND' || null, section: '' || null, site: '' || istatsLabels.bbc_site || istatsLabels.app_name || istatsLabels.prod_name || null, contentId: 'urn:bbc:cps:69a8f5ef-1d3a-b1f9-e050-17ac8045757b' || null, contentType: 'index-home' || null, edition: 'domestic' || null, additionalProperties: additionalPageProperties }; function updatePageData(newData) { page = Object.assign(page, newData); } document.addEventListener('bbc-page-reset', function(event) { if (event.detail && event.detail.page) { updatePageData(event.detail.page); } document.dispatchEvent(new Event('bbc-page-updated')); }); window.bbcpage = { loadModule: function(deps) { return new Promise(function (resolve, reject) { window.require(deps, function () { resolve.apply(this, arguments); }, function (error) { reject(error); }); }) }, loadCSS: function (url, timeout) { return window.bbcpage.loadModule(['orb/lib/_$']) .then(function($) { return new Promise(function(resolve, reject) { var stylesheet = loadCSS(url); $.onloadCSS(stylesheet, function() { resolve(); }); if (timeout) { setTimeout(function () { reject(); }, timeout); } }); }); }, isModal: function () { return modal; }, getLanguage: function () { return new Promise(function(resolve, reject) { resolve(language); }); }, trackRegion: function (region, labels) { return window.bbcpage.loadModule(['istats-1']) .then(function(istats) { var trackLabels = { region: region }; for (var label in labels) { trackLabels[label] = labels[label]; } var linkType = labels.linkType || 'internal'; istats.track(linkType, trackLabels); }); }, getName: function() { return Promise.resolve(page.name); }, getDestination: function() { return Promise.resolve(page.destination); }, getProducer: function() { return Promise.resolve(page.producer); }, getSite: function() { return Promise.resolve(page.site); }, getSection: function() { return Promise.resolve(page.section); }, getContentType: function() { return Promise.resolve(page.contentType); }, getContentId: function() { return Promise.resolve(page.contentId); }, getEdition: function() { return new Promise(function (resolve, reject) { if (page.edition) { resolve(page.edition); return; } try { resolve(getMetaValue('x-audience').toLowerCase()); } catch (err){ // This property is related to Chartbeat; see http://support.chartbeat.com/docs/ if (window._sf_async_config) { resolve(window._sf_async_config.region || null); } } resolve(null); }); }, getReferrer: function() { return Promise.resolve(window.orb && window.orb.referrer !== null && window.orb.referrer !== undefined ? window.orb.referrer : document.referrer); }, getAdditionalProperties: function() { return Promise.resolve(page.additionalProperties); } }; var USERINFO_PREFIX = "www." || "www."; function initUserCache(orbitUser) { var availableAttr = [ 'X-Country', 'X-Ip_is_advertise_combined', 'X-Ip_is_uk_combined' ]; var userCache = availableAttr.reduce(function(user, curr, i) { if (!orbitUser[curr]) { return user; } var res = Object.assign({}, user); res[curr] = orbitUser[curr]; return res; }, {}); if (Object.keys(userCache).length !== availableAttr.length) { userCache._partial = true; } return userCache; } var user = initUserCache({ }); function checkStatus(response) { if (response.status >= 200 && response.status < 300) { return response; } else { var error = new Error(response.statusText); error.response = response; throw error; } } function parseJSON(response) { return response.json(); } var supportsCors = function() { return typeof XMLHttpRequest !== 'undefined' && 'withCredentials' in new XMLHttpRequest(); }; var getUserInfoFallback = function() { return window.bbcpage.loadModule(['orb/fig']) .then(function(orbFig) { return new Promise(function(resolve, reject) { orbFig.load(function(fig) { var getCountryFallback = function() { if (fig.geo.isUK()) { return 'GB'; } else if (fig.geo.isEU()) { return 'EU'; } }; resolve({ 'X-Country': user.country || getCountryFallback(), 'X-Ip_is_uk_combined': fig().uk ? 'yes' : 'no', 'X-Ip_is_advertise_combined': fig().ad ? 'yes' : 'no' }); }, function () { reject('Error determining country. Timeout?'); }); }); }); }; var _userInfoRequest; var getUserInfo = function() { var host = window.location.host.toString().match(/bbc\.com$/) ? 'bbc.com' : 'bbc.co.uk'; var userInfoUrl = "https://" + USERINFO_PREFIX + host + '/userinfo'; if (!user._partial) { return Promise.resolve(user); } if (!_userInfoRequest) { if (typeof window.fetch === 'undefined' || !supportsCors()) { _userInfoRequest = getUserInfoFallback(); } else { _userInfoRequest = window.fetch(userInfoUrl, { credentials: 'same-origin' }) .then(checkStatus) .then(parseJSON) .then(function(userInfo) { user = userInfo; return user; }); } } return _userInfoRequest; }; var USER_PROFILE_URL = "https://web.archive.org/web/20200531140253/https://www.bbc.co.uk/userprofile";; var _helloRequest; var getSegmentations = function() { if (user.ageBand) { return Promise.resolve(user); } if (!_helloRequest) { if (typeof window.fetch === 'undefined' || !supportsCors()) { return Promise.resolve(user); } else { _helloRequest = window.bbcpage.loadModule(['idcta-v2/idcta-1']).then(function(idcta) { return idcta.initiateTokenRefresh().then(function() { return window.fetch(USER_PROFILE_URL, { credentials: 'include' }) .then(checkStatus) .then(parseJSON) .then(function(profileInfo) { Object.assign(user, profileInfo); return user; }); }); }); } } return _helloRequest; }; window.bbcuser = { getHashedId: function() { return window.bbcpage.loadModule(['idcta-v2/idcta-1']) .then(function(idcta) { return idcta.getCookieInstance().getHidFromCookie(); }); }, getAgeBand: function() { if (user['X-Age-Band']) { return Promise.resolve(user['X-Age-Band']); } return bbcuser.isSignedIn().then(function(isSignedIn) { if (isSignedIn) { return window.bbcpage.loadModule(['idcta-v2/idcta-1']) .then(function(idcta) { user['X-Age-Band'] = idcta.getUserDetailsFromCookie().ab; if (user['X-Age-Band'] === 'u13') { user['X-Age-Band'] = '0-12'; return user['X-Age-Band']; } else if (user['X-Age-Band'] === 'u16') { user['X-Age-Band'] = '13-15'; return user['X-Age-Band']; } else if (user['X-Age-Band'] === 'u18') { user['X-Age-Band'] = '16-17'; return user['X-Age-Band']; } else { user['X-Age-Band'] = undefined; return getSegmentations().then(function(userInfo) { user['X-Age-Band'] = userInfo['X-Age-Band']; return user['X-Age-Band'] || undefined; }).catch(function(error) { return user['X-Age-Band'] || undefined; }); } }); } else { return undefined; } }); }, getCountry: function() { if (user['X-Country']) { return Promise.resolve(user['X-Country']); } return getUserInfo().then(function(userInfo) { return userInfo['X-Country'] || 'GB'; }); }, isUKCombined: function() { return getUserInfo().then(function(userInfo) { if (!userInfo['X-Ip_is_uk_combined']) { throw new Error('missing isUKCombined from userinfo response'); } return userInfo['X-Ip_is_uk_combined'].toLowerCase() === 'yes'; }) }, canSeeAdverts: function() { return getUserInfo().then(function(userInfo) { if (!userInfo['X-Ip_is_advertise_combined']) { throw new Error('missing canSeeAdverts from userinfo response'); } return userInfo['X-Ip_is_advertise_combined'].toLowerCase() === "yes"; }); }, isSignedIn: function() { return window.bbcpage.loadModule(['idcta-v2/idcta-1']) .then(function(idcta) { return (idcta && idcta.getCookieInstance().hasCookie()); }); }, allowsPerformanceCookies: function() { return window.bbcpage.loadModule(['orb/cookies']) .then(function(bbccookies) { return !!bbccookies.cookiesEnabled() && !!bbccookies.readPolicy('performance'); }); }, allowsFunctionalCookies: function() { return window.bbcpage.loadModule(['orb/cookies']) .then(function(bbccookies) { return !!bbccookies.cookiesEnabled() && !!bbccookies.readPolicy('personalisation'); }); }, getCookieValue: function(cookieName) { return window.bbcpage.loadModule(['orb/cookies']) .then(function(bbccookies) { return bbccookies.get(cookieName); }); }, resetCookiesPreferences: function() { return window.bbcpage.loadModule(['orb/cookies']) .then(function(bbccookies) { bbccookies.setDefaultCookiesSingleDomain(); }); }, hasCookiesEnabled: function() { return window.bbcpage.loadModule(['orb/cookies']) .then(function(bbccookies) { return !!bbccookies.cookiesEnabled(); }); }, hasSeenCookieBanner: function() { return window.bbcpage.loadModule(['orb/cookies']) .then(function (bbccookies) { return !!bbccookies.isCookiePolicySet(); }); }, logEvent: function (verb, noun, extraLabels) { return window.bbcuser.hasCookiesEnabled() .then(function(allowsCookies) { if (allowsCookies) { return window.bbcpage.loadModule(['istats-1']) .then(function(istats) { istats.log(verb, noun, extraLabels); }); } else { throw new Error('User cannot be tracked due to cookies preferences.'); } }); }, }; }());</script><script src="https://web.archive.org/web/20200531140253js_/https://nav.files.bbci.co.uk/orbit/1d3c7747a3c32f8f7dcb5ca089209136/js/require.min.js"></script> <script src="https://web.archive.org/web/20200531140253js_/https://nav.files.bbci.co.uk/orbit-webmodules/0.0.2-456.e308d0a/cookie-banner/cookie-library.min.js"></script><script type="text/javascript">if (window.define !== undefined) { define('orb/cookies', function() { return window.bbccookies; }); }</script> <script src="https://web.archive.org/web/20200531140253js_/https://nav.files.bbci.co.uk/orbit/1d3c7747a3c32f8f7dcb5ca089209136/js/api.min.js"></script><script type="text/javascript">window.bbcFlagpoles_istats="ON",require.config({paths:{"istats-1":"https://web.archive.org/web/20200531140253/https://nav.files.bbci.co.uk/orbit-webmodules/0.0.2-456.e308d0a/istats/istats-1"}}),require(["istats-1","orb/cookies"],function(a,t){if(t.isAllowed("s1")){var e=(o=document.location.href.match(/^(?:https|http):\/\/\w*\.(?:(int|test|stage|live|)\.)?bbc\.(?:co\.uk|com)/))?void 0===o[1]||""===o[1]||"live"===o[1]?"//web.archive.org/web/20200531140253/https://sa.bbc.co.uk/bbc/bbc/s":"//web.archive.org/web/20200531140253/https://sa.bbc.co.uk/bbc/"+o[1]+"/s":"//web.archive.org/web/20200531140253/https://sa.bbc.co.uk/bbc/test/s";a.addCollector({name:"default",url:e,separator:"&"});var s="newsround";a.setCountername(s),window.istats_countername&&a.setCountername(window.istats_countername),a.addLabels("ml_name=webmodule&ml_version=0.0.2-456.e308d0a&blq_e=orbit&blq_r=orbit&blq_s=orbit&blq_v=cbbc&language=en&bbc_site=cbbc&app_name=newsround&app_type=responsive&page_type=home&children_show=newsround")}var o});</script><link rel="stylesheet" href="https://web.archive.org/web/20200531140253cs_/https://static.files.bbci.co.uk/account/id-cta/1.43.0/style/id-cta.css"><!--[if IE 8]><link href="https://static.files.bbci.co.uk/account/id-cta/1.43.0/style/ie8.css" rel="stylesheet"/> <![endif]--><script type="text/javascript">(function() {if (!window.require) {throw new Error('idcta: could not find require module');}if (typeof(map) == 'undefined') {var map = {};}if (!!document.createElementNS && !!document.createElementNS('http://www.w3.org/2000/svg', 'svg').createSVGRect) {document.documentElement.className += ' id-svg';}var ptrt = new RegExp("[\\?&]ptrt=([^&]*)").exec(document.location.href);var ENDPOINT_URL = 'https://web.archive.org/web/20200531140253/https://idcta.api.bbc.co.uk';var ENDPOINT_CONFIG = ('/idcta/config?callback=&context=cbbc&ptrt=' + encodeURIComponent((ptrt ? ptrt[1] : document.location.href))).replace(/\&/g, '&');var ENDPOINT_TRANSLATIONS = '/idcta/translations?callback=';function hasPromise() {var P = window.Promise;var promiseToString = null;if (P) {try {promiseToString = Object.prototype.toString.call(P.resolve());} catch(e) {/*silently ignored*/}}return (promiseToString === '[object Promise]' && !P.cast);}if (hasPromise()) {define('idcta/es6-promise', function() {return window.Promise;});define('idcta-v2/es6-promise', function() {return window.Promise;});}map['idcta-v2'] = 'https://web.archive.org/web/20200531140253/https://static.files.bbci.co.uk/account/id-cta/1.43.0/modules/idcta-v2';map['idcta-v2/config'] = ENDPOINT_URL + ENDPOINT_CONFIG;map['idcta-v2/translations'] = ENDPOINT_URL + ENDPOINT_TRANSLATIONS;map['idcta'] = 'https://web.archive.org/web/20200531140253/https://static.files.bbci.co.uk/account/id-cta/1.8.2/modules/idcta';map['idcta-v2/idcta-1'] = 'https://web.archive.org/web/20200531140253/https://static.files.bbci.co.uk/account/id-cta/1.43.0/modules/idcta-v2/dist/idcta-1.min';map['idcta-v2/experiment-snippet'] = 'https://web.archive.org/web/20200531140253/https://cdn.optimizely.com/public/4621041136/s/idcta_live';const idctaShim = {deps: ['idcta-v2/idcta-1'],};require({shim: {'idcta-v2/statusbar': idctaShim,'idcta-v2/id-config': idctaShim},map: {'*': {'idcta/idcta-1': 'idcta-v2/idcta-1','idcta': 'idcta-v2',}},paths: map});window.idctaBaseUrl = ENDPOINT_URL;define('idcta/config', ['idcta-v2/config'], function(data) {return data;});define('idcta/translations', ['idcta-v2/translations'], function(data) {return data;});})();</script> <!-- BBCDOTCOM head --><script type="text/javascript">/*<![CDATA[*/ var _sf_startpt = (new Date()).getTime(); /*]]>*/</script><style type="text/css">.bbccom_display_none{display:none;}</style><script type="text/javascript">/*<![CDATA[*/ var bbcdotcomConfig, googletag = googletag || {}; googletag.cmd = googletag.cmd || [], bbcdotcomScripts = [], tp = window.tp || []; var bbcdotcom = false; (function(){ if(typeof require !== 'undefined') { require({ paths:{ "bbcdotcom":"https://web.archive.org/web/20200531140253/https://static.bbc.co.uk/bbcdotcom/4.2.0/script" } }); } })(); /*]]>*/</script><script type="text/javascript">/*<![CDATA[*/ var bbcdotcom = { adverts: { keyValues: { set: function() {} } }, advert: { write: function () {}, show: function () {}, isActive: function () { return false; }, layout: function() { return { reset: function() {} } } }, config: { init: function() {}, isActive: function() {}, setSections: function() {}, isAdsEnabled: function() {}, setAdsEnabled: function() {}, isAnalyticsEnabled: function() {}, setAnalyticsEnabled: function() {}, setAssetPrefix: function() {}, setFlagpoles: function() {}, setVersion: function () {}, setJsPrefix: function() {}, setSwfPrefix: function() {}, setCssPrefix: function() {}, setConfig: function() {}, getAssetPrefix: function() {}, getJsPrefix: function () {}, getSwfPrefix: function () {}, getCssPrefix: function () {}, isOptimizelyEnabled: function() {}, isThirdPartyDisabled: function() {}, isThirdPartyDisabledEU: function() {}, setEU: function() {} }, survey: { init: function(){ return false; } }, data: {}, init: function() {}, objects: function(str) { return false; }, locale: { set: function() {}, get: function() {} }, setAdKeyValue: function() {}, utils: { addEvent: function() {}, addHtmlTagClass: function() {}, log: function () {} }, addLoadEvent: function() {} }; /*]]>*/</script><script type="text/javascript">/*<![CDATA[*/ (function(){ if (typeof orb !== 'undefined' && typeof orb.fig === 'function') { if (orb.fig('ad') && orb.fig('uk') == 0) { bbcdotcom.data = { ads: (orb.fig('ad') ? 1 : 0), stats: (orb.fig('uk') == 0 ? 1 : 0), statsProvider: orb.fig('ap') }; } } else { document.write('<script type="text/javascript" src="https://web.archive.org/web/20200531140253/https://www.bbc.com/wwscripts/data">\x3C/script>'); } })(); /*]]>*/</script><script type="text/javascript">/*<![CDATA[*/ (function(){ if (typeof orb === 'undefined' || typeof orb.fig !== 'function') { bbcdotcom.data = { ads: bbcdotcom.data.a, stats: bbcdotcom.data.b, statsProvider: bbcdotcom.data.c }; } if (bbcdotcom.data.ads == 1) { document.write('<script type="text/javascript" src="https://web.archive.org/web/20200531140253/https://www.bbc.com/wwscripts/flag">\x3C/script>'); } })(); /*]]>*/</script><script type="text/javascript">/*<![CDATA[*/ (function(){ if (window.bbcdotcom && (typeof bbcdotcom.flag == 'undefined' || (typeof bbcdotcom.data.ads !== 'undefined' && bbcdotcom.flag.a != 1))) { bbcdotcom.data.ads = 0; } if (/[?|&]ads/.test(window.location.href) || /(^|; )ads=on; /.test(document.cookie) || /; ads=on(; |$)/.test(document.cookie)) { bbcdotcom.data.ads = 1; bbcdotcom.data.stats = 1; } if (window.bbcdotcom && (bbcdotcom.data.ads == 1 || bbcdotcom.data.stats == 1)) { bbcdotcom.assetPrefix = "https://web.archive.org/web/20200531140253/https://static.bbc.co.uk/bbcdotcom/4.2.0/"; if (/(sandbox|int)(.dev)*.bbc.co*/.test(window.location.href) || /[?|&]ads-debug/.test(window.location.href) || document.cookie.indexOf('ads-debug=') !== -1) { document.write('<script type="text/javascript" src="https://web.archive.org/web/20200531140253/https://static.bbc.co.uk/bbcdotcom/4.2.0/script/dist/bbcdotcom.dev.js">\x3C/script>'); } else { document.write('<script type="text/javascript" src="https://web.archive.org/web/20200531140253/https://static.bbc.co.uk/bbcdotcom/4.2.0/script/dist/bbcdotcom.js">\x3C/script>'); } } })(); /*]]>*/</script><script type="text/javascript">if (window.bbcdotcom && bbcdotcom.data.stats == 1) { document.write('<link rel="dns-prefetch" href="//web.archive.org/web/20200531140253/https://secure-us.imrworldwide.com/">'); document.write('<link rel="dns-prefetch" href="//web.archive.org/web/20200531140253/https://me-cdn.effectivemeasure.net/">'); document.write('<link rel="dns-prefetch" href="//web.archive.org/web/20200531140253/https://ssc.api.bbc.com/">'); } if (window.bbcdotcom && bbcdotcom.data.ads == 1) { document.write('<link rel="dns-prefetch" href="//web.archive.org/web/20200531140253/https://www.googletagservices.com/">'); document.write('<link rel="dns-prefetch" href="//web.archive.org/web/20200531140253/https://bbc.gscontxt.net/">'); document.write('<link rel="dns-prefetch" href="//web.archive.org/web/20200531140253/https://tags.crwdcntrl.net/">'); document.write('<link rel="dns-prefetch" href="//web.archive.org/web/20200531140253/https://ad.crwdcntrl.net/">'); }</script><script type="text/javascript">if (window.bbcdotcom && bbcdotcom.data.ads == 1) { document.write('<meta name="google-site-verification" content="auTeTTwSt_KBY_4iDoR00Lwb7-qzx1IgzJy6ztaWgEI" />'); }</script><script type="text/javascript">/*<![CDATA[*/ (function(){ var GDPR_COUNTRIES = ['AT', 'BE', 'BG', 'HR', 'CY', 'CZ', 'DK', 'EE', 'FI', 'FR', 'DE', 'GR', 'HU', 'IE', 'IT', 'LV', 'LT', 'LU', 'MT', 'NL', 'PL', 'PT', 'RO', 'SK', 'SI', 'ES', 'SE', 'IS', 'LI', 'NO', 'CH']; if (window.bbcdotcom && (bbcdotcom.data.ads == 1 || bbcdotcom.data.stats == 1)) { bbcdotcomConfig = {"adFormat":"standard","adKeyword":"","adMode":"smart","adsEnabled":true,"appAnalyticsSections":"","asyncEnabled":true,"disableInitialLoad":false,"advertInfoPageUrl":"https:\/\/web.archive.org\/web\/20200531140253\/https:\/\/www.bbc.com\/privacy\/cookies\/international\/","advertisementText":"Advertisement","analyticsEnabled":true,"thirdPartyDisabled":false,"sherlockEnabled":false,"appName":"","assetPrefix":"https:\/\/web.archive.org\/web\/20200531140253\/https:\/\/static.bbc.co.uk\/bbcdotcom\/4.2.0\/","customAdParams":[],"customStatsParams":[],"headline":"","id":"","inAssociationWithText":"in association with","keywords":"","language":"","orbTransitional":false,"optimizelyEnabled":true,"palEnv":"live","productName":"","sections":[],"comScoreEnabled":true,"comscoreSite":"bbc","comscoreID":"19293874","comscorePageName":"","slots":"","sponsoredByText":"is sponsored by","adsByGoogleText":"Ads by Google","summary":"","type":"","features":{"testfeature":{"name":"testfeature","envs":["sandbox","int","test"],"on":true,"options":{},"override":null},"lxadverts":{"name":"lxadverts","envs":[],"on":true,"options":{},"override":null}},"staticBase":"\/bbcdotcom","staticHost":"https:\/\/web.archive.org\/web\/20200531140253\/https:\/\/static.bbc.co.uk","staticVersion":"4.2.0","staticPrefix":"https:\/\/web.archive.org\/web\/20200531140253\/https:\/\/static.bbc.co.uk\/bbcdotcom\/4.2.0","dataHttp":"tps.bbc.com","dataHttps":"www.bbc.com","flagHttp":"www.bbc.co.uk","flagHttps":"www.bbc.co.uk","analyticsHttp":"sa.bbc.com","analyticsHttps":"ssa.bbc.com"}; bbcdotcom.config.init(bbcdotcomConfig, bbcdotcom.data, window.location, window.document); bbcdotcom.config.setFlagpoles(bbcdotcom.flag || {}); bbcdotcom.config.setAssetPrefix("https://web.archive.org/web/20200531140253/https://static.bbc.co.uk/bbcdotcom/4.2.0/"); bbcdotcom.config.setVersion("4.2.0"); if (window.bbcuser && window.bbcuser.getCountry && typeof(window.bbcuser.getCountry) === 'function') { window.bbcuser.getCountry().then(function(countryCode) { var isEU = countryCode ? GDPR_COUNTRIES.indexOf(countryCode.toUpperCase()) !== -1 : false; bbcdotcom.config.setEU(isEU); }); } else if (window.orb && window.orb.fig && typeof(window.orb.fig) === 'function') { bbcdotcom.config.setEU(window.orb.fig('eu')); } document.write('<!--[if IE 7]><script type="text/javascript">bbcdotcom.config.setIE7(true);\x3C/script><![endif]-->'); document.write('<!--[if IE 8]><script type="text/javascript">bbcdotcom.config.setIE8(true);\x3C/script><![endif]-->'); document.write('<!--[if IE 9]><script type="text/javascript">bbcdotcom.config.setIE9(true);\x3C/script><![endif]-->'); if (/[?|&]ex-dp/.test(window.location.href) || document.cookie.indexOf('ex-dp=') !== -1) { bbcdotcom.utils.addHtmlTagClass('bbcdotcom-ex-dp'); } } })(); /*]]>*/</script><script type="text/javascript">var initOptimizely = (function(isEnabled){ if(!isEnabled) return; var logger = window.bbcdotcom.Logger('bbcdotcom:head:optimizely'); /* Allow Optimizely in these paths */ var allowPaths = ['/', '/wwhp']; /* Only run on optimizely on homepage */ if (bbcdotcom.utils && allowPaths.indexOf(window.location.pathname) !== -1){ /* set correct OptimizelyURL for prod or sandbox */ var optimizelyURL = "https://web.archive.org/web/20200531140253/https://cdn.optimizely.com/public/4621041136/s/bbccom_sandbox.js"; if(window.location.hostname === 'www.bbc.com') { optimizelyURL = "https://web.archive.org/web/20200531140253/https://cdn.optimizely.com/public/4621041136/s/bbccom_prod.js"; } /* Set cookie to 1 year */ window['optimizely'] = window['optimizely'] || []; window['optimizely'].push({ "type": "cookieExpiration", "cookieExpirationDays": 365 }); document.write('<script type="text/javascript" src="'+optimizelyURL+'">\x3C/script>'); } })( bbcdotcom.config.isOptimizelyEnabled() );</script><script type="text/javascript">/*<![CDATA[*/ if ( window.bbcdotcom && bbcdotcom.data && bbcdotcom.data.ads && bbcdotcom.data.ads == 1 && bbcdotcom.config && bbcdotcom.config.isGrapeshotEnabled && bbcdotcom.config.isGrapeshotEnabled() && bbcdotcom.config.isWorldService && !bbcdotcom.config.isWorldService() ) { var gs_channels="DEFAULT"; (function () { var gsurl = window.location.href.split("?")[0]; bbcdotcomScripts.push({src:'https://web.archive.org/web/20200531140253/https://bbc.gscontxt.net/?url='+encodeURIComponent(gsurl)}); })(); } /*]]>*/</script><script type="text/javascript">/*<![CDATA[*/ if (window.bbcdotcom && bbcdotcom.config && bbcdotcom.config.isLotameActive && bbcdotcom.config.isLotameActive()&& bbcdotcom.config.isLotameEnabled && bbcdotcom.config.isLotameEnabled()){ (function () { var clientId, lotameUrl, lotameAudienceUrl; clientId = (bbcdotcom.config.isWorldService && bbcdotcom.config.isWorldService()) ? '10826' : '10816'; lotameUrl = 'https://web.archive.org/web/20200531140253/https://tags.crwdcntrl.net/c/'+clientId+'/cc.js?ns='+clientId; lotameAudienceUrl = 'https://web.archive.org/web/20200531140253/https://ad.crwdcntrl.net/5/c=10815/pe=y/var=ccauds'; bbcdotcomScripts.push({src:lotameUrl,id:"LOTCC"+clientId}); bbcdotcomScripts.push({src:lotameAudienceUrl}); })(); } /*]]>*/</script><script type="text/javascript">/*<![CDATA[*/ /** * ASYNC waits to make any gpt requests until the bottom of the page */ if ( window.bbcdotcom && bbcdotcom.data && bbcdotcom.data.ads && bbcdotcom.data.ads == 1 && bbcdotcom.config && bbcdotcom.config.isAsync && bbcdotcom.config.isAsync() && bbcdotcom.config.isAdsEnabled && bbcdotcom.config.isAdsEnabled() ) { (function () { bbcdotcomScripts.push({src:'https://web.archive.org/web/20200531140253/https://securepubads.g.doubleclick.net/tag/js/gpt.js'}); })(); } /*]]>*/</script><script type="text/javascript">/*<![CDATA[*/ /* Load Lotame, Grapeshot and GPT without blocking rendering but executing in order */ if ( window.bbcdotcom && bbcdotcom.config && bbcdotcomScripts.length > 0 ) { (function () { bbcdotcom.checkThirdPartyFirst(function(){ if (!bbcdotcom.config.isThirdPartyDisabledEU()){ bbcdotcomScripts.forEach(function(item) { var script = document.createElement('script'); script.async = false; if(item.id) script.id = item.id; script.src = item.src; document.head.appendChild(script); }); } }); })(); } /*]]>*/</script><script type="text/javascript">/*<![CDATA[*/ (function() { window.bbcdotcom.head = true; }()); /*]]>*/</script><script type="text/javascript">// Globally available search context window.SEARCHBOX={"variant":"cbbc","locale":"en","feature":"akamai-idcta","navSearchboxStaticPrefix":"https://web.archive.org/web/20200531140253/https://nav.files.bbci.co.uk/searchbox/78586d2c712589d4dde6a9bd914521c4/","searchboxAppStaticPrefix":"https://web.archive.org/web/20200531140253/https://nav.files.bbci.co.uk/searchbox/78586d2c712589d4dde6a9bd914521c4/drawer","searchFormHtml":"<div tabindex=\"-1\" data-reactroot=\"\"><div><section class=\"se-searchbox-panel\"><div class=\"se-g-wrap\"><div class=\"se-g-layout\"><div class=\"se-g-layout__item se-searchbox-title\" aria-hidden=\"true\">search</div><div class=\"se-g-layout__item se-searchbox\"><form accept-charset=\"utf-8\" id=\"searchboxDrawerForm\" method=\"get\" action=\"https://search.bbc.co.uk/search\"><label class=\"se-searchbox__input\" for=\"se-searchbox-input-field\"><span class=\"se-sr-only\">Search Term</span><input type=\"text\" name=\"q\" value=\"\" id=\"se-searchbox-input-field\" class=\"se-searchbox__input__field\" maxLength=\"512\" autoComplete=\"off\" autoCorrect=\"off\" autoCapitalize=\"off\" spellcheck=\"false\" tabindex=\"0\"/></label><input type=\"hidden\" name=\"scope\" value=\"\"/><button type=\"submit\" class=\"se-searchbox__submit\" tabindex=\"0\" data-bbc-container=\"se-searchbox-panel\" data-bbc-title=\"search-icon\" data-bbc-metadata=\"{"PAR":"form::1","CHD":"button::1"}\">Search</button><button type=\"button\" class=\"se-searchbox__clear se-searchbox__clear--visible\" tabindex=\"0\" data-bbc-container=\"se-searchbox-panel\" data-bbc-title=\"clear-icon\" data-bbc-metadata=\"{"PAR":"form::1","CHD":"button::2"}\">Close</button></form></div></div></div></section><div aria-live=\"polite\" aria-atomic=\"true\" class=\"se-suggestions-container\"><section class=\"se-g-wrap\"></section></div></div></div>","searchScopePlaceholder":"<input type=\"hidden\" name=\"scope\" id=\"orb-search-scope\" value=\"cbbc\">","searchScopeParam":"?scope=cbbc","searchScopeTemplate":"cbbc","searchPlaceholderWrapperStart":"","searchPlaceholderWrapperEnd":""}; window.SEARCHBOX.suppress = false; window.SEARCHBOX.searchScope = SEARCHBOX.searchScopeTemplate.split('-')[0];</script><link rel="stylesheet" href="https://web.archive.org/web/20200531140253cs_/https://nav.files.bbci.co.uk/searchbox/78586d2c712589d4dde6a9bd914521c4/css/main.css"><!--[if IE 8]> <script type="text/javascript" src="https://nav.files.bbci.co.uk/searchbox/78586d2c712589d4dde6a9bd914521c4/script/html5shiv.min.js"></script> <script type="text/javascript">window['searchboxIEVersion'] = 8;</script> <link rel="stylesheet" href="https://nav.files.bbci.co.uk/searchbox/78586d2c712589d4dde6a9bd914521c4/css/ie8.css"> <![endif]--><!--[if IE 9]> <script type="text/javascript">window['searchboxIEVersion'] = 9;</script> <![endif]--><script type="text/javascript">require.config({ "paths": { "orb/async/_footerpromo": 'https://web.archive.org/web/20200531140253/https://nav.files.bbci.co.uk/navpromo/1a758b67be1b457163af81ff41c92946/js/async/_footerpromo' } });</script> <script type="text/javascript">"use strict";!function(){window.__reverbStaticLocation="https://web.archive.org/web/20200531140253/https://mybbc-analytics.files.bbci.co.uk/reverb-client-js/",window.__smarttagVersion="5.18.2",window.__reverb={},window.__reverb.__reverbLoadedPromise=new Promise(function(e,n){window.__reverb.__resolveReverbLoaded=e,window.__reverb.__rejectReverbLoaded=n}),window.__reverb.__reverbTimeout=setTimeout(function(){window.__reverb.__rejectReverbLoaded()},5e3);var n=function(r,d){window.__reverb.__reverbLoadedPromise.then(function(e){if(r&&r.detail){var n=r.detail.label,t=r.detail.type,i=r.detail.elem,o=r.detail.originalEvent;r.detail.isClick&&(d=r.detail.isClick),e.userActionEvent(t,n,r.detail,i,o,d)}},function(){console.log("Reverb failed to load. Event not sent")})};document.addEventListener("bbc-user-event",function(e){n(e,!1)}),document.addEventListener("bbc-user-click",function(e){n(e,!0)}),document.addEventListener("bbc-page-updated",function(){window.__reverb.__reverbLoadedPromise.then(function(e){e.initialise().then(function(){return e.viewEvent()})},function(){console.log("Reverb failed to load. Event not sent")})})}();</script><script type="text/javascript" src="https://web.archive.org/web/20200531140253js_/https://mybbc-analytics.files.bbci.co.uk/reverb-client-js/reverb-1.4.0.js" async=""></script><script type="text/javascript">window.__detectview={clickManagementEnabled:false};</script><link rel="preload" as="script" href="//web.archive.org/web/20200531140253/https://m.files.bbci.co.uk/modules/morph-vendor/1.0.2/bundle.vendor.js"/><link rel="preload" as="script" href="//web.archive.org/web/20200531140253/https://m.files.bbci.co.uk/modules/morph/5.3.1/bundle.js"/><script>window.Morph = {}</script><script type="text/javascript">Morph.markPerformance = function(label) { if(window.performance && window.performance.mark) { window.performance.mark(label); } }; Morph.versions = {}; Morph.modules = {}; Morph.config = { cdn: "m.files.bbci.co.uk", pushEnv: "live" }; Morph.styles = {}; Morph.styleSrc = []; Morph.toInit = {bundles: [], registers: [], payloads: []}; Morph.initStyles = function() { if (!Morph.enhanced) { var eles = Array.prototype.slice.call(document.getElementsByTagName('noscript')); for (var i = 0, len = eles.length; i<len; i++) { if (eles[i].className === 'morph-core-style') { document.write(eles[i].innerText); eles[i].parentNode.removeChild(eles[i]); } } return; } for (var j = 0, jLen = Morph.styleSrc.length; j<jLen; j++) { document.write(Morph.styleSrc[j]); } Morph.styleSrc = []; };</script><script type="text/javascript">Morph.forceCore = window.location.search.indexOf('morph-disable-enhanced=1')>-1; Morph.modernBrowser = ( 'addEventListener' in window && 'querySelector' in document && 'localStorage' in window ); Morph.isOperaMini = ( window.navigator.userAgent.indexOf('Opera Mini/')>-1 && window.navigator.userAgent.indexOf('Presto/')>-1 ); Morph.enhanced = (!Morph.forceCore && Morph.modernBrowser && !Morph.isOperaMini);</script><!--[if gt IE 8]><!--><noscript class="morph-core-style"><!--<![endif]--><link rel="stylesheet" href="//web.archive.org/web/20200531140253cs_/https://m.files.bbci.co.uk/modules/bbc-morph-grandstand/5.4.2/latin/core.css"/><!--[if gt IE 8]><!--></noscript><!--<![endif]--><script>if (Morph.enhanced) { Morph.styles["bbc-morph-grandstand/5.4.2/latin"]=true; Morph.styleSrc.push("<link rel=\"stylesheet\" href=\"//m.files.bbci.co.uk/modules/bbc-morph-grandstand/5.4.2/latin/enhanced.css\"/>"); }</script><!--[if gt IE 8]><!--><noscript class="morph-core-style"><!--<![endif]--><link rel="stylesheet" href="//web.archive.org/web/20200531140253cs_/https://m.files.bbci.co.uk/modules/bbc-morph-newsround-super-promo/3.1.1/core.css"/><!--[if gt IE 8]><!--></noscript><!--<![endif]--><script>if (Morph.enhanced) { Morph.styles["bbc-morph-newsround-super-promo/3.1.1"]=true; Morph.styleSrc.push("<link rel=\"stylesheet\" href=\"//m.files.bbci.co.uk/modules/bbc-morph-newsround-super-promo/3.1.1/enhanced.css\"/>"); }</script><!--[if gt IE 8]><!--><noscript class="morph-core-style"><!--<![endif]--><link rel="stylesheet" href="//web.archive.org/web/20200531140253cs_/https://m.files.bbci.co.uk/modules/bbc-morph-newsround-button/4.0.0/core.css"/><!--[if gt IE 8]><!--></noscript><!--<![endif]--><script>if (Morph.enhanced) { Morph.styles["bbc-morph-newsround-button/4.0.0"]=true; Morph.styleSrc.push("<link rel=\"stylesheet\" href=\"//m.files.bbci.co.uk/modules/bbc-morph-newsround-button/4.0.0/enhanced.css\"/>"); }</script><script>if (Morph.enhanced) { Morph.styles["bbc-morph-gel-icons/3.0.0"]=true; Morph.styleSrc.push("<link rel=\"stylesheet\" href=\"//m.files.bbci.co.uk/modules/bbc-morph-gel-icons/3.0.0/enhanced.css\"/>"); }</script><!--[if gt IE 8]><!--><noscript class="morph-core-style"><!--<![endif]--><link rel="stylesheet" href="//web.archive.org/web/20200531140253cs_/https://m.files.bbci.co.uk/modules/bbc-morph-newsround-top-stories/6.1.1/core.css"/><!--[if gt IE 8]><!--></noscript><!--<![endif]--><script>if (Morph.enhanced) { Morph.styles["bbc-morph-newsround-top-stories/6.1.1"]=true; Morph.styleSrc.push("<link rel=\"stylesheet\" href=\"//m.files.bbci.co.uk/modules/bbc-morph-newsround-top-stories/6.1.1/enhanced.css\"/>"); }</script><!--[if gt IE 8]><!--><noscript class="morph-core-style"><!--<![endif]--><link rel="stylesheet" href="//web.archive.org/web/20200531140253cs_/https://m.files.bbci.co.uk/modules/bbc-morph-newsround-promo/5.1.0/core.css"/><!--[if gt IE 8]><!--></noscript><!--<![endif]--><script>if (Morph.enhanced) { Morph.styles["bbc-morph-newsround-promo/5.1.0"]=true; Morph.styleSrc.push("<link rel=\"stylesheet\" href=\"//m.files.bbci.co.uk/modules/bbc-morph-newsround-promo/5.1.0/enhanced.css\"/>"); }</script><!--[if gt IE 8]><!--><noscript class="morph-core-style"><!--<![endif]--><link rel="stylesheet" href="//web.archive.org/web/20200531140253cs_/https://m.files.bbci.co.uk/modules/bbc-morph-smp/5.0.1/core.css"/><!--[if gt IE 8]><!--></noscript><!--<![endif]--><script>if (Morph.enhanced) { Morph.styles["bbc-morph-smp/5.0.1"]=true; Morph.styleSrc.push("<link rel=\"stylesheet\" href=\"//m.files.bbci.co.uk/modules/bbc-morph-smp/5.0.1/enhanced.css\"/>"); }</script><!--[if gt IE 8]><!--><noscript class="morph-core-style"><!--<![endif]--><link rel="stylesheet" href="//web.archive.org/web/20200531140253cs_/https://m.files.bbci.co.uk/modules/bbc-morph-newsround-more-stories/4.1.3/core.css"/><!--[if gt IE 8]><!--></noscript><!--<![endif]--><script>if (Morph.enhanced) { Morph.styles["bbc-morph-newsround-more-stories/4.1.3"]=true; Morph.styleSrc.push("<link rel=\"stylesheet\" href=\"//m.files.bbci.co.uk/modules/bbc-morph-newsround-more-stories/4.1.3/enhanced.css\"/>"); }</script><!--[if gt IE 8]><!--><noscript class="morph-core-style"><!--<![endif]--><link rel="stylesheet" href="//web.archive.org/web/20200531140253cs_/https://m.files.bbci.co.uk/modules/bbc-morph-newsround-bulletin-promo/4.2.1/core.css"/><!--[if gt IE 8]><!--></noscript><!--<![endif]--><script>if (Morph.enhanced) { Morph.styles["bbc-morph-newsround-bulletin-promo/4.2.1"]=true; Morph.styleSrc.push("<link rel=\"stylesheet\" href=\"//m.files.bbci.co.uk/modules/bbc-morph-newsround-bulletin-promo/4.2.1/enhanced.css\"/>"); }</script><!--[if gt IE 8]><!--><noscript class="morph-core-style"><!--<![endif]--><link rel="stylesheet" href="//web.archive.org/web/20200531140253cs_/https://m.files.bbci.co.uk/modules/bbc-morph-newsround-cbbc-nav/4.1.0/core.css"/><!--[if gt IE 8]><!--></noscript><!--<![endif]--><script>if (Morph.enhanced) { Morph.styles["bbc-morph-newsround-cbbc-nav/4.1.0"]=true; Morph.styleSrc.push("<link rel=\"stylesheet\" href=\"//m.files.bbci.co.uk/modules/bbc-morph-newsround-cbbc-nav/4.1.0/enhanced.css\"/>"); }</script><!--[if gt IE 8]><!--><noscript class="morph-core-style"><!--<![endif]--><link rel="stylesheet" href="//web.archive.org/web/20200531140253cs_/https://m.files.bbci.co.uk/modules/bbc-morph-newsround-header/6.1.1/core.css"/><!--[if gt IE 8]><!--></noscript><!--<![endif]--><script>if (Morph.enhanced) { Morph.styles["bbc-morph-newsround-header/6.1.1"]=true; Morph.styleSrc.push("<link rel=\"stylesheet\" href=\"//m.files.bbci.co.uk/modules/bbc-morph-newsround-header/6.1.1/enhanced.css\"/>"); }</script><!--[if gt IE 8]><!--><noscript class="morph-core-style"><!--<![endif]--><link rel="stylesheet" href="//web.archive.org/web/20200531140253cs_/https://m.files.bbci.co.uk/modules/bbc-morph-newsround-anchors/2.1.2/core.css"/><!--[if gt IE 8]><!--></noscript><!--<![endif]--><script>if (Morph.enhanced) { Morph.styles["bbc-morph-newsround-anchors/2.1.2"]=true; Morph.styleSrc.push("<link rel=\"stylesheet\" href=\"//m.files.bbci.co.uk/modules/bbc-morph-newsround-anchors/2.1.2/enhanced.css\"/>"); }</script><script type="text/javascript">Morph.initStyles(); /* u5736191167639911 */</script><script type="text/javascript"> var domain = "co.uk"; var _sf_async_config = _sf_async_config || {}; var _sf_startpt=(new Date()).getTime(); _sf_async_config.domain = "www" + ".bbc." + domain; _sf_async_config.uid = 50924; _sf_async_config.title = window.document.title; _sf_async_config.path = "bbc." + domain + "/newsround" + ""; _sf_async_config.sections = "newsround"; </script> <title>Home - CBBC Newsround</title> <meta content="Home - CBBC Newsround" property="og:title"/> <meta name="description" content="The home of news and fun facts for kids. Find out what is going on, with stories, pictures and videos. Try a quiz or one of our free games."/><meta content="The home of news and fun facts for kids. Find out what is going on, with stories, pictures and videos. Try a quiz or one of our free games." property="og:description"/> <meta content="https://web.archive.org/web/20200531140253/https://www.bbc.co.uk/newsround" property="og:url"/><link rel="canonical" href="https://web.archive.org/web/20200531140253/https://www.bbc.co.uk/newsround"/> <meta content="//web.archive.org/web/20200531140253im_/https://m.files.bbci.co.uk/modules/bbc-morph-newsround-page/5.1.22/images/og-newsround.png" property="og:image"/> <link href="//web.archive.org/web/20200531140253im_/https://m.files.bbci.co.uk/modules/bbc-morph-newsround-page/5.1.22/images/apple-touch-icon.png" rel="apple-touch-icon"/> <link href="//web.archive.org/web/20200531140253im_/https://m.files.bbci.co.uk/modules/bbc-morph-newsround-page/5.1.22/images/favicon.ico" rel="shortcut icon" type="image/x-icon"/> <link href="//web.archive.org/web/20200531140253im_/https://m.files.bbci.co.uk/modules/bbc-morph-newsround-page/5.1.22/images/favicon-16x16.png" rel="icon" type="image/png" sizes="16x16"/> <link href="//web.archive.org/web/20200531140253im_/https://m.files.bbci.co.uk/modules/bbc-morph-newsround-page/5.1.22/images/favicon-32x32.png" rel="icon" type="image/png" sizes="32x32"/> <link href="//web.archive.org/web/20200531140253im_/https://m.files.bbci.co.uk/modules/bbc-morph-newsround-page/5.1.22/images/favicon-96x96.png" rel="icon" type="image/png" sizes="96x96"/> <script type="text/javascript"> window.addEventListener('DOMContentLoaded', function() { const html = document.querySelector('.no-js'); if (html.classList) { html.classList.remove('no-js'); } }); </script> <style> .b-reith-sans-loaded { font-feature-settings: 'ss01'; } </style></head><body><noscript><p style="position: absolute; top: -999em"><img src="https://web.archive.org/web/20200531140253im_/https://a1.api.bbc.co.uk/hit.xiti?&col=1&from=p&ptag=js&s=598253&p=newsround.page&x1=[urn:bbc:cps:69a8f5ef-1d3a-b1f9-e050-17ac8045757b]&x2=[responsive]&x3=[bbc_website]&x4=[en]&x7=[index-home]&x8=[reverb-1.4.0-nojs]&x11=[NEWSROUND]&x12=[NEWSROUND]" height="1" width="1" alt=""></p></noscript> <!-- BBCDOTCOM bodyFirst --><div id="bbccom_interstitial_ad" class="bbccom_display_none"></div><div id="bbccom_interstitial" class="bbccom_display_none"><script type="text/javascript">/*<![CDATA[*/ (function() { if (window.bbcdotcom && bbcdotcom.config.isAdsEnabled()) { googletag.cmd.push(function() { googletag.display('bbccom_interstitial'); }); } }()); /*]]>*/</script></div><div id="bbccom_wallpaper_ad" class="bbccom_display_none"></div><div id="bbccom_wallpaper" class="bbccom_display_none"><script type="text/javascript">/*<![CDATA[*/ (function() { var wallpaper; if (window.bbcdotcom && bbcdotcom.config.isAdsEnabled()) { if (bbcdotcom.config.isAsync()) { googletag.cmd.push(function() { googletag.display('bbccom_wallpaper'); }); } else if (typeof googletag !== "undefined" && typeof googletag.display === "function") { googletag.display("wallpaper"); } wallpaper = bbcdotcom.adverts.adRegister.getAd('wallpaper'); } }()); /*]]>*/</script></div><script type="text/javascript">/*<![CDATA[*/ (function() { if (window.bbcdotcom && bbcdotcom.config.isAdsEnabled()) { document.write(unescape('%3Cscript id="gnlAdsEnabled" class="bbccom_display_none"%3E%3C/script%3E')); } if (window.bbcdotcom && bbcdotcom.config.isAnalyticsEnabled()) { document.write(unescape('%3Cscript id="gnlAnalyticsEnabled" class="bbccom_display_none"%3E%3C/script%3E')); } }()); /*]]>*/</script><script type="text/javascript">/*<![CDATA[*/ (function() { window.bbcdotcom.bodyFirst = true; }()); /*]]>*/</script> <div id="cookiePrompt"></div> <!--[if (gt IE 8) | (IEMobile)]><!--><header id="orb-banner" role="banner" aria-label="BBC"><!--<![endif]--><!--[if (lt IE 9) & (!IEMobile)]> <![if (IE 8)]> <header id="orb-banner" role="banner" class="orb-old-ie orb-ie8" aria-label="BBC"> <![endif]> <![if (IE 7)]> <header id="orb-banner" role="banner" class="orb-old-ie orb-ie7" aria-label="BBC"> <![endif]> <![if (IE 6)]> <header id="orb-banner" role="banner" class="orb-old-ie orb-ie6" aria-label="BBC"> <![endif]> <![endif]--><div id="orb-header" class="orb-nav-pri orb-nav-pri-white orb-nav-empty" dir="ltr"><div class="orb-nav-pri-container b-r b-g-p"><div class="orb-nav-section orb-nav-blocks"><a href="https://web.archive.org/web/20200531140253/https://www.bbc.co.uk/">Homepage</a></div><section><div class="orb-skip-links"><h2>Accessibility links</h2><ul><li><a href="#orb-modules">Skip to content</a></li><li><a id="orb-accessibility-help" href="https://web.archive.org/web/20200531140253/https://www.bbc.co.uk/accessibility/">Accessibility Help</a></li></ul></div></section><div id="mybbc-wrapper" class="orb-nav-section orb-nav-id orb-nav-focus orb-nav-id-default"> <div id="idcta-statusbar" class="orb-nav-section orb-nav-focus" data-bbc-container="id-cta" data-bbc-event-type="click" data-bbc-ignore-views="1" data-bbc-metadata="{"id-cta-type": "statusbar-orb"}" data-bbc-source="responsive_web" data-bbc-title="id-cta-sign-in"><a id="idcta-link" href="https://web.archive.org/web/20200531140253/https://account.bbc.com/account?context=cbbc&ptrt=https%3A%2F%2Fwww.bbc.co.uk%2Fnewsround"><span id="idcta-username">BBC Account</span></a></div><script type="text/javascript">require(['idcta/statusbar'], function (statusbar) {new statusbar.Statusbar({id: 'idcta-statusbar', publiclyCacheable: true});});</script> </div><nav role="navigation" aria-label="BBC" class="orb-nav"><div class="orb-nav-section orb-nav-links orb-nav-focus" id="orb-nav-links"><ul><li class="orb-nav-cbbc"><a href="https://web.archive.org/web/20200531140253/https://www.bbc.co.uk/cbbc">CBBC</a></li><li class="orb-nav-iplayer orb-d"><a href="https://web.archive.org/web/20200531140253/https://www.bbc.co.uk/tv/cbbc">CBBC iPlayer</a></li><li class="orb-nav-newsround"><a href="https://web.archive.org/web/20200531140253/https://www.bbc.co.uk/newsround">Newsround</a></li><li class="orb-nav-bitesize orb-d"><a href="https://web.archive.org/web/20200531140253/https://www.bbc.co.uk/bitesize">Bitesize</a></li><li class="orb-nav-ownit orb-d"><a href="https://web.archive.org/web/20200531140253/https://www.bbc.com/ownit">Own It</a></li><li class="orb-nav-cbeebies"><a href="https://web.archive.org/web/20200531140253/https://www.bbc.co.uk/cbeebies">CBeebies</a></li><li class="orb-nav-cbbctv"><a href="https://web.archive.org/web/20200531140253/https://www.bbc.co.uk/iplayer/guide/cbbc">CBBC on TV</a></li><li class="orb-nav-cbbchelp orb-d"><a href="https://web.archive.org/web/20200531140253/https://www.bbc.co.uk/cbbc/curations/cbbc-help">CBBC Help</a></li><li id="orb-nav-more" style="width: 88px" aria-controls="orb-panel-more"><a href="#orb-footer" data-alt="More" class="istats-notrack">Menu<span class="orb-icon orb-icon-arrow"></span></a></li></ul></div></nav><div class="orb-nav-section orb-nav-search"><a class="orb-search__button" href="https://web.archive.org/web/20200531140253/https://search.bbc.co.uk/search?scope=cbbc" title="Search the BBC">Search</a><form class="b-f" id="orb-search-form" role="search" method="get" action="https://web.archive.org/web/20200531140253/https://search.bbc.co.uk/search" accept-charset="utf-8"><div><input type="hidden" name="scope" id="orb-search-scope" value="cbbc"><label for="orb-search-q">Search the BBC</label><input id="orb-search-q" type="text" autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" name="q" placeholder="Search"><button id="orb-search-button" class="orb-search__button">Search the BBC</button><input type="hidden" name="suggid" id="orb-search-suggid"></div></form></div></div><div id="orb-panels"></div></div></header> <!-- Styling hook for shared modules only --> <div id="orb-modules"> <div id="u5736191167639911"><div data-reactid=".47x0ykjrrm" data-react-checksum="-1091915223"><div class="newsround-cbbc-nav-wrapper" data-reactid=".47x0ykjrrm.0"><div class="newsround-cbbc-nav-component newsround-cbbc-nav-component-padding-override" data-reactid=".47x0ykjrrm.0.0"><div class="newsround-cbbc-nav-component__container" data-reactid=".47x0ykjrrm.0.0.0"><nav class="newsround-cbbc-nav-component__menu" data-reactid=".47x0ykjrrm.0.0.0.0"><div class="newsround-cbbc-nav-component__bar" data-reactid=".47x0ykjrrm.0.0.0.0.0"><a class="newsround-cbbc-nav-component__product" href="/web/20200531140253/https://www.bbc.co.uk/cbbc" data-istats-track="true" data-istats-track-link-location="nr_cbbc_nav-home" data-reactid=".47x0ykjrrm.0.0.0.0.0.0">Home</a><button id="newsround-cbbc-nav-component__toggle" class="newsround-cbbc-nav-component__toggle" data-reactid=".47x0ykjrrm.0.0.0.0.0.1"><span id="newsround-cbbc-nav-component__toggle-title" class="newsround-cbbc-nav-component__toggle-title" data-reactid=".47x0ykjrrm.0.0.0.0.0.1.0">Menu</span><span class="newsround-cbbc-nav-component__toggle-icon" data-reactid=".47x0ykjrrm.0.0.0.0.0.1.1"></span></button></div><div id="newsround-cbbc-nav-component__list" class="newsround-cbbc-nav-component__list" data-reactid=".47x0ykjrrm.0.0.0.0.1"><ul class="newsround-cbbc-nav-component__list-inner" data-reactid=".47x0ykjrrm.0.0.0.0.1.0"><li class="newsround-cbbc-nav-component__item newsround-cbbc-nav-component__item--home" data-istats-track="true" data-istats-track-link-location="nr_cbbc_nav-home" data-reactid=".47x0ykjrrm.0.0.0.0.1.0.$home"><a class="newsround-cbbc-nav-component__link newsround-cbbc-nav-component__link--home" href="/web/20200531140253/https://www.bbc.co.uk/cbbc" data-reactid=".47x0ykjrrm.0.0.0.0.1.0.$home.0"><span class="newsround-cbbc-nav-component__link-icon newsround-cbbc-nav-component__link-icon--home" data-reactid=".47x0ykjrrm.0.0.0.0.1.0.$home.0.0"></span><span class="newsround-cbbc-nav-component__link-label newsround-cbbc-nav-component__link-label--home" data-reactid=".47x0ykjrrm.0.0.0.0.1.0.$home.0.1">Home</span></a></li><li class="newsround-cbbc-nav-component__item newsround-cbbc-nav-component__item--shows" data-istats-track="true" data-istats-track-link-location="nr_cbbc_nav-shows" data-reactid=".47x0ykjrrm.0.0.0.0.1.0.$shows"><a class="newsround-cbbc-nav-component__link newsround-cbbc-nav-component__link--shows" href="/web/20200531140253/https://www.bbc.co.uk/cbbc/shows" data-reactid=".47x0ykjrrm.0.0.0.0.1.0.$shows.0"><span class="newsround-cbbc-nav-component__link-icon newsround-cbbc-nav-component__link-icon--shows" data-reactid=".47x0ykjrrm.0.0.0.0.1.0.$shows.0.0"></span><span class="newsround-cbbc-nav-component__link-label newsround-cbbc-nav-component__link-label--shows" data-reactid=".47x0ykjrrm.0.0.0.0.1.0.$shows.0.1">Shows</span></a></li><li class="newsround-cbbc-nav-component__item newsround-cbbc-nav-component__item--games" data-istats-track="true" data-istats-track-link-location="nr_cbbc_nav-games" data-reactid=".47x0ykjrrm.0.0.0.0.1.0.$games"><a class="newsround-cbbc-nav-component__link newsround-cbbc-nav-component__link--games" href="/web/20200531140253/https://www.bbc.co.uk/cbbc/games" data-reactid=".47x0ykjrrm.0.0.0.0.1.0.$games.0"><span class="newsround-cbbc-nav-component__link-icon newsround-cbbc-nav-component__link-icon--games" data-reactid=".47x0ykjrrm.0.0.0.0.1.0.$games.0.0"></span><span class="newsround-cbbc-nav-component__link-label newsround-cbbc-nav-component__link-label--games" data-reactid=".47x0ykjrrm.0.0.0.0.1.0.$games.0.1">Games</span></a></li><li class="newsround-cbbc-nav-component__item newsround-cbbc-nav-component__item--quizzes" data-istats-track="true" data-istats-track-link-location="nr_cbbc_nav-quizzes" data-reactid=".47x0ykjrrm.0.0.0.0.1.0.$quizzes"><a class="newsround-cbbc-nav-component__link newsround-cbbc-nav-component__link--quizzes" href="/web/20200531140253/https://www.bbc.co.uk/cbbc/quizzes" data-reactid=".47x0ykjrrm.0.0.0.0.1.0.$quizzes.0"><span class="newsround-cbbc-nav-component__link-icon newsround-cbbc-nav-component__link-icon--quizzes" data-reactid=".47x0ykjrrm.0.0.0.0.1.0.$quizzes.0.0"></span><span class="newsround-cbbc-nav-component__link-label newsround-cbbc-nav-component__link-label--quizzes" data-reactid=".47x0ykjrrm.0.0.0.0.1.0.$quizzes.0.1">Quizzes</span></a></li><li class="newsround-cbbc-nav-component__item newsround-cbbc-nav-component__item--watch" data-istats-track="true" data-istats-track-link-location="nr_cbbc_nav-watch" data-reactid=".47x0ykjrrm.0.0.0.0.1.0.$watch"><a class="newsround-cbbc-nav-component__link newsround-cbbc-nav-component__link--watch" href="/web/20200531140253/https://www.bbc.co.uk/cbbc/watch" data-reactid=".47x0ykjrrm.0.0.0.0.1.0.$watch.0"><span class="newsround-cbbc-nav-component__link-icon newsround-cbbc-nav-component__link-icon--watch" data-reactid=".47x0ykjrrm.0.0.0.0.1.0.$watch.0.0"></span><span class="newsround-cbbc-nav-component__link-label newsround-cbbc-nav-component__link-label--watch" data-reactid=".47x0ykjrrm.0.0.0.0.1.0.$watch.0.1">Watch</span></a></li><li class="newsround-cbbc-nav-component__item newsround-cbbc-nav-component__item--joinin" data-istats-track="true" data-istats-track-link-location="nr_cbbc_nav-joinin" data-reactid=".47x0ykjrrm.0.0.0.0.1.0.$joinin"><a class="newsround-cbbc-nav-component__link newsround-cbbc-nav-component__link--joinin" href="/web/20200531140253/https://www.bbc.co.uk/cbbc/joinin" data-reactid=".47x0ykjrrm.0.0.0.0.1.0.$joinin.0"><span class="newsround-cbbc-nav-component__link-icon newsround-cbbc-nav-component__link-icon--joinin" data-reactid=".47x0ykjrrm.0.0.0.0.1.0.$joinin.0.0"></span><span class="newsround-cbbc-nav-component__link-label newsround-cbbc-nav-component__link-label--joinin" data-reactid=".47x0ykjrrm.0.0.0.0.1.0.$joinin.0.1">Join In</span></a></li><li class="newsround-cbbc-nav-component__item newsround-cbbc-nav-component__item--puzzles" data-istats-track="true" data-istats-track-link-location="nr_cbbc_nav-puzzles" data-reactid=".47x0ykjrrm.0.0.0.0.1.0.$puzzles"><a class="newsround-cbbc-nav-component__link newsround-cbbc-nav-component__link--puzzles" href="/web/20200531140253/https://www.bbc.co.uk/cbbc/puzzles" data-reactid=".47x0ykjrrm.0.0.0.0.1.0.$puzzles.0"><span class="newsround-cbbc-nav-component__link-icon newsround-cbbc-nav-component__link-icon--puzzles" data-reactid=".47x0ykjrrm.0.0.0.0.1.0.$puzzles.0.0"></span><span class="newsround-cbbc-nav-component__link-label newsround-cbbc-nav-component__link-label--puzzles" data-reactid=".47x0ykjrrm.0.0.0.0.1.0.$puzzles.0.1">Puzzles</span></a></li><li class="newsround-cbbc-nav-component__item newsround-cbbc-nav-component__item--newsround newsround-cbbc-nav-component__item--current" data-istats-track="true" data-istats-track-link-location="nr_cbbc_nav-newsround" data-reactid=".47x0ykjrrm.0.0.0.0.1.0.$newsround"><a class="newsround-cbbc-nav-component__link newsround-cbbc-nav-component__link--newsround newsround-cbbc-nav-component__link--current" href="/web/20200531140253/https://www.bbc.co.uk/newsround" data-reactid=".47x0ykjrrm.0.0.0.0.1.0.$newsround.0"><span class="newsround-cbbc-nav-component__link-icon newsround-cbbc-nav-component__link-icon--newsround" data-reactid=".47x0ykjrrm.0.0.0.0.1.0.$newsround.0.0"></span><span class="newsround-cbbc-nav-component__link-label newsround-cbbc-nav-component__link-label--newsround" data-reactid=".47x0ykjrrm.0.0.0.0.1.0.$newsround.0.1">Newsround</span></a></li></ul></div></nav></div></div></div><section role="main" data-reactid=".47x0ykjrrm.1"><div class="o-mvt-container" data-reactid=".47x0ykjrrm.1.0"><script src="https://web.archive.org/web/20200531140253js_/https://cdn.optimizely.com/public/4621041136/s/newsround_prod.js" data-reactid=".47x0ykjrrm.1.0.0"></script></div><header class="newsround-header__header" data-reactid=".47x0ykjrrm.1.1"><div class="newsround-header__orb" style="background-image:url(//web.archive.org/web/20200531140253im_/https://m.files.bbci.co.uk/modules/bbc-morph-newsround-header/6.1.1/images/newsround-orb.png);" data-reactid=".47x0ykjrrm.1.1.0"></div><div class="newsround-header__wrapper" data-reactid=".47x0ykjrrm.1.1.1"><div class="newsround-header__container" data-reactid=".47x0ykjrrm.1.1.1.0"><a class="newsround-header__link" href="/web/20200531140253/https://www.bbc.co.uk/newsround" data-istats-track="true" data-istats-track-link-location="nr_nav-homelogo" data-reactid=".47x0ykjrrm.1.1.1.0.0"><div class="newsround-header__logo" style="background-image:url(//web.archive.org/web/20200531140253im_/https://m.files.bbci.co.uk/modules/bbc-morph-newsround-header/6.1.1/images/newsround-logo.png);background:url(//web.archive.org/web/20200531140253im_/https://m.files.bbci.co.uk/modules/bbc-morph-newsround-header/6.1.1/images/newsround-logo.svg) no-repeat;" data-reactid=".47x0ykjrrm.1.1.1.0.0.0"><h1 class="newsround-header__off-screen" data-reactid=".47x0ykjrrm.1.1.1.0.0.0.0">Newsround</h1></div></a><div class="newsround-header__button" data-istats-track="true" data-istats-track-link-location="nr_nav-bulletin" data-bbc-container="home-watch-newsround-button" data-bbc-metadata="{"PAR":"home-watch-newsround-button","CHD":"button"}" data-bbc-source="newsround" data-bbc-title="Watch Newsround" data-reactid=".47x0ykjrrm.1.1.1.0.1"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/news/watch_newsround" class="newsround-button newsround-button--teal" aria-label="" data-reactid=".47x0ykjrrm.1.1.1.0.1.0"><div class="gel-icon gel-icon--play newsround-button__icon" data-reactid=".47x0ykjrrm.1.1.1.0.1.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.1.1.0.1.0.0.0"><title data-reactid=".47x0ykjrrm.1.1.1.0.1.0.0.0.0">play</title><path d="M3 32l26-16L3 0v32z" data-reactid=".47x0ykjrrm.1.1.1.0.1.0.0.0.1"></path></svg></div><span data-reactid=".47x0ykjrrm.1.1.1.0.1.0.1:0">Watch </span><span class="newsround-header__button__bp-text" data-reactid=".47x0ykjrrm.1.1.1.0.1.0.1:1">Newsround</span></a></div></div></div></header><div data-reactid=".47x0ykjrrm.1.2"></div><section class="newsround-top-stories" data-istats-track-scroll-visibility="nr_home_top_stories" data-reactid=".47x0ykjrrm.1.3"><div class="newsround-top-stories__wrapper newsround-top-stories__wrapper--with-top-margin newsround-top-stories__wrapper--no-bottom-padding" data-reactid=".47x0ykjrrm.1.3.0"><div class="newsround-top-stories__container gel-layout--equal" data-reactid=".47x0ykjrrm.1.3.0.0"><div class="newsround-top-stories__featured-story" data-reactid=".47x0ykjrrm.1.3.0.0.0"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_top_stories-1" data-bbc-container="home-top-stories" data-bbc-metadata="{"PAR":"home-top-stories","CHD":"card::1"}" data-bbc-source="newsround" data-bbc-title="Astronauts make history with SpaceX launch" data-reactid=".47x0ykjrrm.1.3.0.0.0.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/52526849" class="newsround-promo__content newsround-promo__content--white" data-reactid=".47x0ykjrrm.1.3.0.0.0.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.3.0.0.0.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.3.0.0.0.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/6528/production/_112569852_gettyimages-1216401230.jpg" alt="SpaceX-rocket-launch." class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.3.0.0.0.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.3.0.0.0.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.3.0.0.0.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.3.0.0.0.0.0.1.0">Astronauts make history with SpaceX launch</p><p class="newsround-promo__summary" data-reactid=".47x0ykjrrm.1.3.0.0.0.0.0.1.1">Spaceship is in orbit above the Earth as it heads towards International Space Station</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.3.0.0.0.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.3.0.0.0.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.3.0.0.0.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.3.0.0.0.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.3.0.0.0.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.3.0.0.0.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.3.0.0.0.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-31T10:18:50+00:00" data-datetime="3 hours ago" data-reactid=".47x0ykjrrm.1.3.0.0.0.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.3.0.0.0.0.0.1.2.0.0.1.0">3 hours ago</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.3.0.0.0.0.0.1.2.0.0.1.1">3 hours ago</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".47x0ykjrrm.1.3.0.0.0.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".47x0ykjrrm.1.3.0.0.0.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.3.0.0.0.0.0.1.2.1.0.0"><title data-reactid=".47x0ykjrrm.1.3.0.0.0.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".47x0ykjrrm.1.3.0.0.0.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".47x0ykjrrm.1.3.0.0.0.0.0.1.2.1.1">31</span></div></div></div></a></div></div><div class="newsround-top-stories__stories" data-reactid=".47x0ykjrrm.1.3.0.0.1"><div class="newsround-top-stories__container" data-reactid=".47x0ykjrrm.1.3.0.0.1.0"><div class="newsround-top-stories__story" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52813673"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_top_stories-2" data-bbc-container="home-top-stories" data-bbc-metadata="{"PAR":"home-top-stories","CHD":"card::2"}" data-bbc-source="newsround" data-bbc-title="Protests continue in 30 US cities" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52813673.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/52813673" class="newsround-promo__content newsround-promo__content--white" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52813673.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52813673.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52813673.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/10EFF/production/_112557396_photo30-05-2020082853.jpg" alt="George-Floyd-Protests." class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52813673.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52813673.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52813673.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52813673.0.0.1.0">Protests continue in 30 US cities</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52813673.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52813673.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52813673.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52813673.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52813673.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52813673.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52813673.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-31T08:10:39+00:00" data-datetime="5 hours ago" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52813673.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52813673.0.0.1.2.0.0.1.0">5 hours ago</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52813673.0.0.1.2.0.0.1.1">5 hours ago</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52813673.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52813673.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52813673.0.0.1.2.1.0.0"><title data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52813673.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52813673.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52813673.0.0.1.2.1.1">97</span></div></div></div></a></div></div><div class="newsround-top-stories__story" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52866488"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_top_stories-3" data-bbc-container="home-top-stories" data-bbc-metadata="{"PAR":"home-top-stories","CHD":"card::3"}" data-bbc-source="newsround" data-bbc-title="People shielding in England allowed outside from Monday" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52866488.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/52866488" class="newsround-promo__content newsround-promo__content--white" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52866488.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52866488.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52866488.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/14B78/production/_112565848_gettyimages-1209423875.jpg" alt="woman looking out of window" class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52866488.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52866488.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52866488.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52866488.0.0.1.0">People shielding in England allowed outside from Monday</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52866488.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52866488.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52866488.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52866488.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52866488.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52866488.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52866488.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-31T08:46:37+00:00" data-datetime="5 hours ago" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52866488.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52866488.0.0.1.2.0.0.1.0">5 hours ago</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52866488.0.0.1.2.0.0.1.1">5 hours ago</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52866488.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52866488.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52866488.0.0.1.2.1.0.0"><title data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52866488.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52866488.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52866488.0.0.1.2.1.1">6</span></div></div></div></a></div></div><div class="newsround-top-stories__story" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52860398"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_top_stories-4" data-bbc-container="home-top-stories" data-bbc-metadata="{"PAR":"home-top-stories","CHD":"card::4"}" data-bbc-source="newsround" data-bbc-title="Not all beaches will have lifeguards on duty this summer" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52860398.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/52860398" class="newsround-promo__content newsround-promo__content--white" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52860398.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52860398.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52860398.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/14088/production/_112565028_gettyimages-1215846828.jpg" alt="lifeguard-station." class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52860398.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52860398.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52860398.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52860398.0.0.1.0">Not all beaches will have lifeguards on duty this summer</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52860398.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52860398.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52860398.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52860398.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52860398.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52860398.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52860398.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-30T14:08:11+00:00" data-datetime="23 hours ago" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52860398.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52860398.0.0.1.2.0.0.1.0">23 hours ago</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52860398.0.0.1.2.0.0.1.1">23 hours ago</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52860398.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52860398.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52860398.0.0.1.2.1.0.0"><title data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52860398.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52860398.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52860398.0.0.1.2.1.1">15</span></div></div></div></a></div></div><div class="newsround-top-stories__story" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52823401"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_top_stories-5" data-bbc-container="home-top-stories" data-bbc-metadata="{"PAR":"home-top-stories","CHD":"card::5"}" data-bbc-source="newsround" data-bbc-title="VOTE: How has lockdown been making you feel?" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52823401.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/52823401" class="newsround-promo__content newsround-promo__content--white" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52823401.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52823401.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52823401.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/17767/production/_112530169_index.jpg" alt="girl-on-her-phone" class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52823401.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52823401.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52823401.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52823401.0.0.1.0">VOTE: How has lockdown been making you feel?</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52823401.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52823401.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52823401.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52823401.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52823401.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52823401.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52823401.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-30T06:52:31+00:00" data-datetime="1 day ago" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52823401.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52823401.0.0.1.2.0.0.1.0">1 day ago</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52823401.0.0.1.2.0.0.1.1">1 day ago</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52823401.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52823401.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52823401.0.0.1.2.1.0.0"><title data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52823401.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52823401.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52823401.0.0.1.2.1.1">89</span></div></div></div></a></div></div><div class="newsround-top-stories__story" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52845966"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_top_stories-6" data-bbc-container="home-top-stories" data-bbc-metadata="{"PAR":"home-top-stories","CHD":"card::6"}" data-bbc-source="newsround" data-bbc-title="The Earth-sized planet orbiting our nearest star" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52845966.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/52845966" class="newsround-promo__content newsround-promo__content--white" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52845966.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52845966.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52845966.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/1725F/production/_112551849_gettyimages-838258840.jpg" alt="planets." class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52845966.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52845966.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52845966.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52845966.0.0.1.0">The Earth-sized planet orbiting our nearest star</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52845966.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52845966.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52845966.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52845966.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52845966.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52845966.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52845966.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-31T07:23:09+00:00" data-datetime="6 hours ago" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52845966.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52845966.0.0.1.2.0.0.1.0">6 hours ago</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52845966.0.0.1.2.0.0.1.1">6 hours ago</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52845966.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52845966.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52845966.0.0.1.2.1.0.0"><title data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52845966.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52845966.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52845966.0.0.1.2.1.1">8</span></div></div></div></a></div></div><div class="newsround-top-stories__story" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52845835"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_top_stories-7" data-bbc-container="home-top-stories" data-bbc-metadata="{"PAR":"home-top-stories","CHD":"card::7"}" data-bbc-source="newsround" data-bbc-title="Answers to your questions about going back to school" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52845835.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/52845835" class="newsround-promo__content newsround-promo__content--white" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52845835.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52845835.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52845835.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/5004/production/_112548402_p08fgtrn.jpg" alt="Students" class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52845835.0.0.0.0.0"/></div><span class="newsround-promo__promolabel newsround-promo__promolabel--white newsround-promo__promolabel--duration" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52845835.0.0.0.1"><div class="gel-icon gel-icon--play newsround-promo__icon" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52845835.0.0.0.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52845835.0.0.0.1.0.0"><title data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52845835.0.0.0.1.0.0.0">play</title><path d="M3 32l26-16L3 0v32z" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52845835.0.0.0.1.0.0.1"></path></svg></div><span class="duration" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52845835.0.0.0.1.1">2:17</span></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52845835.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52845835.0.0.1.0">Answers to your questions about going back to school</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52845835.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52845835.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52845835.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52845835.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52845835.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52845835.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52845835.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-29T06:34:03+00:00" data-datetime="2 days ago" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52845835.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52845835.0.0.1.2.0.0.1.0">2 days ago</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.3.0.0.1.0.$52845835.0.0.1.2.0.0.1.1">2 days ago</span></time></span></div></div></div></a></div></div></div></div></div></div></section><section class="newsround-anchors" data-reactid=".47x0ykjrrm.1.4"><nav class="newsround-anchors__wrapper" data-reactid=".47x0ykjrrm.1.4.0"><ul class="newsround-anchors__layout newsround-anchors__layout--less-margin" data-reactid=".47x0ykjrrm.1.4.0.0"><li class="newsround-anchors__button" data-bbc-container="home-anchor-links" data-bbc-metadata="{"PAR":"home-anchor-links","CHD":"button::1"}" data-bbc-source="newsround" data-bbc-title="Coronavirus" data-reactid=".47x0ykjrrm.1.4.0.0.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround#more-stories-2" class="newsround-button newsround-button--teal" aria-label="Coronavirus" data-reactid=".47x0ykjrrm.1.4.0.0.0.0"><span data-reactid=".47x0ykjrrm.1.4.0.0.0.0.1">Coronavirus</span></a></li><li class="newsround-anchors__button" data-bbc-container="home-anchor-links" data-bbc-metadata="{"PAR":"home-anchor-links","CHD":"button::2"}" data-bbc-source="newsround" data-bbc-title="Gaming" data-reactid=".47x0ykjrrm.1.4.0.0.1"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround#more-stories-3" class="newsround-button newsround-button--teal" aria-label="Gaming" data-reactid=".47x0ykjrrm.1.4.0.0.1.0"><span data-reactid=".47x0ykjrrm.1.4.0.0.1.0.1">Gaming</span></a></li><li class="newsround-anchors__button" data-bbc-container="home-anchor-links" data-bbc-metadata="{"PAR":"home-anchor-links","CHD":"button::3"}" data-bbc-source="newsround" data-bbc-title="Quiz-fest" data-reactid=".47x0ykjrrm.1.4.0.0.2"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround#more-stories-4" class="newsround-button newsround-button--teal" aria-label="Quiz-fest" data-reactid=".47x0ykjrrm.1.4.0.0.2.0"><span data-reactid=".47x0ykjrrm.1.4.0.0.2.0.1">Quiz-fest</span></a></li><li class="newsround-anchors__button" data-bbc-container="home-anchor-links" data-bbc-metadata="{"PAR":"home-anchor-links","CHD":"button::4"}" data-bbc-source="newsround" data-bbc-title="Newsround Learn" data-reactid=".47x0ykjrrm.1.4.0.0.3"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround#more-stories-5" class="newsround-button newsround-button--teal" aria-label="Newsround Learn" data-reactid=".47x0ykjrrm.1.4.0.0.3.0"><span data-reactid=".47x0ykjrrm.1.4.0.0.3.0.1">Newsround Learn</span></a></li></ul></nav></section><section id="additional-top-stories" class="newsround-more-stories newsround-more-stories--additional-top-stories" data-istats-track-scroll-visibility="nr_home_more_stories_1" data-reactid=".47x0ykjrrm.1.5"><div class="gs-u-box-size newsround-more-stories__wrapper" data-reactid=".47x0ykjrrm.1.5.0"><div class="newsround-more-stories__stories" style="height:478px;" data-reactid=".47x0ykjrrm.1.5.0.1"><div class="newsround-more-stories__story newsround-more-stories__story--additional-top-stories" data-reactid=".47x0ykjrrm.1.5.0.1.0"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_1-1" data-reactid=".47x0ykjrrm.1.5.0.1.0.0"><a href="https://web.archive.org/web/20200531140253/https://www.bbc.co.uk/newsround#more-stories-2" class="newsround-promo__content newsround-promo__content--white" data-reactid=".47x0ykjrrm.1.5.0.1.0.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.5.0.1.0.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.5.0.1.0.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/E1AB/production/_111717775_1_nrcor_tom9.jpg" alt="coronavirus" class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.5.0.1.0.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.5.0.1.0.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.5.0.1.0.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.5.0.1.0.0.0.1.0">Coronavirus: Everything you need to know</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.5.0.1.0.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.5.0.1.0.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.5.0.1.0.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.5.0.1.0.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.5.0.1.0.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.5.0.1.0.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.5.0.1.0.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-03-02T11:52:03+00:00" data-datetime="2 Mar 2020" data-reactid=".47x0ykjrrm.1.5.0.1.0.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.5.0.1.0.0.0.1.2.0.0.1.0">2 Mar 2020</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.5.0.1.0.0.0.1.2.0.0.1.1">2 March 2020</span></time></span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--additional-top-stories" data-reactid=".47x0ykjrrm.1.5.0.1.$52852636"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_1-2" data-reactid=".47x0ykjrrm.1.5.0.1.$52852636.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/52852636" class="newsround-promo__content newsround-promo__content--white" data-reactid=".47x0ykjrrm.1.5.0.1.$52852636.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.5.0.1.$52852636.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.5.0.1.$52852636.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/249F/production/_112557390_sonic2.jpg" alt="Sonic." class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.5.0.1.$52852636.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.5.0.1.$52852636.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.5.0.1.$52852636.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.5.0.1.$52852636.0.0.1.0">Are you ready for Sonic 2?</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.5.0.1.$52852636.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.5.0.1.$52852636.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.5.0.1.$52852636.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.5.0.1.$52852636.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.5.0.1.$52852636.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.5.0.1.$52852636.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.5.0.1.$52852636.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-30T06:52:05+00:00" data-datetime="1 day ago" data-reactid=".47x0ykjrrm.1.5.0.1.$52852636.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.5.0.1.$52852636.0.0.1.2.0.0.1.0">1 day ago</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.5.0.1.$52852636.0.0.1.2.0.0.1.1">1 day ago</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".47x0ykjrrm.1.5.0.1.$52852636.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".47x0ykjrrm.1.5.0.1.$52852636.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.5.0.1.$52852636.0.0.1.2.1.0.0"><title data-reactid=".47x0ykjrrm.1.5.0.1.$52852636.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".47x0ykjrrm.1.5.0.1.$52852636.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".47x0ykjrrm.1.5.0.1.$52852636.0.0.1.2.1.1">25</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--additional-top-stories" data-reactid=".47x0ykjrrm.1.5.0.1.$52837288"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_1-3" data-reactid=".47x0ykjrrm.1.5.0.1.$52837288.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/52837288" class="newsround-promo__content newsround-promo__content--white" data-reactid=".47x0ykjrrm.1.5.0.1.$52837288.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.5.0.1.$52837288.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.5.0.1.$52837288.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/104B9/production/_112554766_photo29-05-2020142324.jpg" alt="Trent-Alexander-Arnold-Premier-League-trophy." class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.5.0.1.$52837288.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.5.0.1.$52837288.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.5.0.1.$52837288.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.5.0.1.$52837288.0.0.1.0">Liverpool could win Premier League title at neutral ground</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.5.0.1.$52837288.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.5.0.1.$52837288.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.5.0.1.$52837288.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.5.0.1.$52837288.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.5.0.1.$52837288.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.5.0.1.$52837288.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.5.0.1.$52837288.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-29T14:27:05+00:00" data-datetime="1 day ago" data-reactid=".47x0ykjrrm.1.5.0.1.$52837288.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.5.0.1.$52837288.0.0.1.2.0.0.1.0">1 day ago</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.5.0.1.$52837288.0.0.1.2.0.0.1.1">1 day ago</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".47x0ykjrrm.1.5.0.1.$52837288.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".47x0ykjrrm.1.5.0.1.$52837288.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.5.0.1.$52837288.0.0.1.2.1.0.0"><title data-reactid=".47x0ykjrrm.1.5.0.1.$52837288.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".47x0ykjrrm.1.5.0.1.$52837288.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".47x0ykjrrm.1.5.0.1.$52837288.0.0.1.2.1.1">1</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--additional-top-stories" data-reactid=".47x0ykjrrm.1.5.0.1.$52838131"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_1-4" data-reactid=".47x0ykjrrm.1.5.0.1.$52838131.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/52838131" class="newsround-promo__content newsround-promo__content--white" data-reactid=".47x0ykjrrm.1.5.0.1.$52838131.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.5.0.1.$52838131.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.5.0.1.$52838131.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/12BC0/production/_112563767_gettyimages-1215846830-1.jpg" alt="Beach-in-the-UK" class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.5.0.1.$52838131.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.5.0.1.$52838131.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.5.0.1.$52838131.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.5.0.1.$52838131.0.0.1.0">What is the latest lockdown advice?</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.5.0.1.$52838131.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.5.0.1.$52838131.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.5.0.1.$52838131.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.5.0.1.$52838131.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.5.0.1.$52838131.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.5.0.1.$52838131.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.5.0.1.$52838131.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-30T09:12:59+00:00" data-datetime="1 day ago" data-reactid=".47x0ykjrrm.1.5.0.1.$52838131.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.5.0.1.$52838131.0.0.1.2.0.0.1.0">1 day ago</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.5.0.1.$52838131.0.0.1.2.0.0.1.1">1 day ago</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".47x0ykjrrm.1.5.0.1.$52838131.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".47x0ykjrrm.1.5.0.1.$52838131.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.5.0.1.$52838131.0.0.1.2.1.0.0"><title data-reactid=".47x0ykjrrm.1.5.0.1.$52838131.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".47x0ykjrrm.1.5.0.1.$52838131.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".47x0ykjrrm.1.5.0.1.$52838131.0.0.1.2.1.1">19</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--additional-top-stories" data-reactid=".47x0ykjrrm.1.5.0.1.$52838577"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_1-5" data-reactid=".47x0ykjrrm.1.5.0.1.$52838577.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/52838577" class="newsround-promo__content newsround-promo__content--white" data-reactid=".47x0ykjrrm.1.5.0.1.$52838577.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.5.0.1.$52838577.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.5.0.1.$52838577.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/12DB2/production/_112543277_5b841a09-db82-4974-924c-8f0be7c0039c.jpg" alt="Solar Orbiter" class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.5.0.1.$52838577.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.5.0.1.$52838577.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.5.0.1.$52838577.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.5.0.1.$52838577.0.0.1.0">European Space Agency turns 45!</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.5.0.1.$52838577.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.5.0.1.$52838577.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.5.0.1.$52838577.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.5.0.1.$52838577.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.5.0.1.$52838577.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.5.0.1.$52838577.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.5.0.1.$52838577.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-30T06:12:45+00:00" data-datetime="1 day ago" data-reactid=".47x0ykjrrm.1.5.0.1.$52838577.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.5.0.1.$52838577.0.0.1.2.0.0.1.0">1 day ago</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.5.0.1.$52838577.0.0.1.2.0.0.1.1">1 day ago</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".47x0ykjrrm.1.5.0.1.$52838577.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".47x0ykjrrm.1.5.0.1.$52838577.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.5.0.1.$52838577.0.0.1.2.1.0.0"><title data-reactid=".47x0ykjrrm.1.5.0.1.$52838577.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".47x0ykjrrm.1.5.0.1.$52838577.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".47x0ykjrrm.1.5.0.1.$52838577.0.0.1.2.1.1">7</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--additional-top-stories" data-reactid=".47x0ykjrrm.1.5.0.1.$52760018"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_1-6" data-reactid=".47x0ykjrrm.1.5.0.1.$52760018.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/52760018" class="newsround-promo__content newsround-promo__content--white" data-reactid=".47x0ykjrrm.1.5.0.1.$52760018.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.5.0.1.$52760018.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.5.0.1.$52760018.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/17C5C/production/_103327379_osaka_wins_reuters.jpg" alt="Naomi Osaka" class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.5.0.1.$52760018.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.5.0.1.$52760018.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.5.0.1.$52760018.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.5.0.1.$52760018.0.0.1.0">Naomi Osaka becomes the highest-paid female athlete ever</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.5.0.1.$52760018.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.5.0.1.$52760018.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.5.0.1.$52760018.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.5.0.1.$52760018.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.5.0.1.$52760018.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.5.0.1.$52760018.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.5.0.1.$52760018.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-29T12:33:00+00:00" data-datetime="2 days ago" data-reactid=".47x0ykjrrm.1.5.0.1.$52760018.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.5.0.1.$52760018.0.0.1.2.0.0.1.0">2 days ago</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.5.0.1.$52760018.0.0.1.2.0.0.1.1">2 days ago</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".47x0ykjrrm.1.5.0.1.$52760018.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".47x0ykjrrm.1.5.0.1.$52760018.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.5.0.1.$52760018.0.0.1.2.1.0.0"><title data-reactid=".47x0ykjrrm.1.5.0.1.$52760018.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".47x0ykjrrm.1.5.0.1.$52760018.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".47x0ykjrrm.1.5.0.1.$52760018.0.0.1.2.1.1">2</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--additional-top-stories" data-reactid=".47x0ykjrrm.1.5.0.1.$52845580"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_1-7" data-reactid=".47x0ykjrrm.1.5.0.1.$52845580.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/52845580" class="newsround-promo__content newsround-promo__content--white" data-reactid=".47x0ykjrrm.1.5.0.1.$52845580.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.5.0.1.$52845580.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.5.0.1.$52845580.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/9BD6/production/_112549893_gettyimages-1061546364.jpg" alt="andre-gray-and-leigh-anne-pinnock." class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.5.0.1.$52845580.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.5.0.1.$52845580.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.5.0.1.$52845580.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.5.0.1.$52845580.0.0.1.0">Little Mix's Leigh-Anne is getting married!</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.5.0.1.$52845580.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.5.0.1.$52845580.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.5.0.1.$52845580.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.5.0.1.$52845580.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.5.0.1.$52845580.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.5.0.1.$52845580.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.5.0.1.$52845580.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-29T06:38:33+00:00" data-datetime="2 days ago" data-reactid=".47x0ykjrrm.1.5.0.1.$52845580.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.5.0.1.$52845580.0.0.1.2.0.0.1.0">2 days ago</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.5.0.1.$52845580.0.0.1.2.0.0.1.1">2 days ago</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".47x0ykjrrm.1.5.0.1.$52845580.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".47x0ykjrrm.1.5.0.1.$52845580.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.5.0.1.$52845580.0.0.1.2.1.0.0"><title data-reactid=".47x0ykjrrm.1.5.0.1.$52845580.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".47x0ykjrrm.1.5.0.1.$52845580.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".47x0ykjrrm.1.5.0.1.$52845580.0.0.1.2.1.1">24</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--additional-top-stories" data-reactid=".47x0ykjrrm.1.5.0.1.$52845629"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_1-8" data-reactid=".47x0ykjrrm.1.5.0.1.$52845629.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/52845629" class="newsround-promo__content newsround-promo__content--white" data-reactid=".47x0ykjrrm.1.5.0.1.$52845629.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.5.0.1.$52845629.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.5.0.1.$52845629.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/898F/production/_112551253_gettyimages-1227630799.jpg" alt="donald-trump." class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.5.0.1.$52845629.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.5.0.1.$52845629.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.5.0.1.$52845629.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.5.0.1.$52845629.0.0.1.0">President Trump takes 'big action' against social media</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.5.0.1.$52845629.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.5.0.1.$52845629.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.5.0.1.$52845629.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.5.0.1.$52845629.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.5.0.1.$52845629.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.5.0.1.$52845629.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.5.0.1.$52845629.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-29T09:08:28+00:00" data-datetime="2 days ago" data-reactid=".47x0ykjrrm.1.5.0.1.$52845629.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.5.0.1.$52845629.0.0.1.2.0.0.1.0">2 days ago</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.5.0.1.$52845629.0.0.1.2.0.0.1.1">2 days ago</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".47x0ykjrrm.1.5.0.1.$52845629.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".47x0ykjrrm.1.5.0.1.$52845629.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.5.0.1.$52845629.0.0.1.2.1.0.0"><title data-reactid=".47x0ykjrrm.1.5.0.1.$52845629.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".47x0ykjrrm.1.5.0.1.$52845629.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".47x0ykjrrm.1.5.0.1.$52845629.0.0.1.2.1.1">21</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--additional-top-stories" data-reactid=".47x0ykjrrm.1.5.0.1.$52847195"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_1-9" data-reactid=".47x0ykjrrm.1.5.0.1.$52847195.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/52847195" class="newsround-promo__content newsround-promo__content--white" data-reactid=".47x0ykjrrm.1.5.0.1.$52847195.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.5.0.1.$52847195.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.5.0.1.$52847195.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/8313/production/_112555533_montage.jpg" alt="will-smith-jojo-siwa-jason-derulo." class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.5.0.1.$52847195.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.5.0.1.$52847195.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.5.0.1.$52847195.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.5.0.1.$52847195.0.0.1.0">Five celebs smashing the Wipe It Down challenge</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.5.0.1.$52847195.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.5.0.1.$52847195.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.5.0.1.$52847195.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.5.0.1.$52847195.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.5.0.1.$52847195.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.5.0.1.$52847195.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.5.0.1.$52847195.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-29T14:00:33+00:00" data-datetime="2 days ago" data-reactid=".47x0ykjrrm.1.5.0.1.$52847195.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.5.0.1.$52847195.0.0.1.2.0.0.1.0">2 days ago</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.5.0.1.$52847195.0.0.1.2.0.0.1.1">2 days ago</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".47x0ykjrrm.1.5.0.1.$52847195.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".47x0ykjrrm.1.5.0.1.$52847195.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.5.0.1.$52847195.0.0.1.2.1.0.0"><title data-reactid=".47x0ykjrrm.1.5.0.1.$52847195.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".47x0ykjrrm.1.5.0.1.$52847195.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".47x0ykjrrm.1.5.0.1.$52847195.0.0.1.2.1.1">7</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--additional-top-stories" data-reactid=".47x0ykjrrm.1.5.0.1.$48460961"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_1-10" data-reactid=".47x0ykjrrm.1.5.0.1.$48460961.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/48460961" class="newsround-promo__content newsround-promo__content--white" data-reactid=".47x0ykjrrm.1.5.0.1.$48460961.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.5.0.1.$48460961.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.5.0.1.$48460961.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/DB66/production/_107166165_mediaitem107164992.jpg" alt="Child-stealing-a-chocolate-biscuit" class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.5.0.1.$48460961.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.5.0.1.$48460961.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.5.0.1.$48460961.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.5.0.1.$48460961.0.0.1.0">What's the best biscuit on the planet?</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.5.0.1.$48460961.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.5.0.1.$48460961.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.5.0.1.$48460961.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.5.0.1.$48460961.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.5.0.1.$48460961.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.5.0.1.$48460961.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.5.0.1.$48460961.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-28T15:38:17+00:00" data-datetime="2 days ago" data-reactid=".47x0ykjrrm.1.5.0.1.$48460961.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.5.0.1.$48460961.0.0.1.2.0.0.1.0">2 days ago</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.5.0.1.$48460961.0.0.1.2.0.0.1.1">2 days ago</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".47x0ykjrrm.1.5.0.1.$48460961.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".47x0ykjrrm.1.5.0.1.$48460961.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.5.0.1.$48460961.0.0.1.2.1.0.0"><title data-reactid=".47x0ykjrrm.1.5.0.1.$48460961.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".47x0ykjrrm.1.5.0.1.$48460961.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".47x0ykjrrm.1.5.0.1.$48460961.0.0.1.2.1.1">27</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--additional-top-stories" data-reactid=".47x0ykjrrm.1.5.0.1.$52839153"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_1-11" data-reactid=".47x0ykjrrm.1.5.0.1.$52839153.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/52839153" class="newsround-promo__content newsround-promo__content--white" data-reactid=".47x0ykjrrm.1.5.0.1.$52839153.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.5.0.1.$52839153.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.5.0.1.$52839153.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/1A62/production/_112545760_p08fg296.jpg" alt="Lucy-smiling" class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.5.0.1.$52839153.0.0.0.0.0"/></div><span class="newsround-promo__promolabel newsround-promo__promolabel--white newsround-promo__promolabel--duration" data-reactid=".47x0ykjrrm.1.5.0.1.$52839153.0.0.0.1"><div class="gel-icon gel-icon--play newsround-promo__icon" data-reactid=".47x0ykjrrm.1.5.0.1.$52839153.0.0.0.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.5.0.1.$52839153.0.0.0.1.0.0"><title data-reactid=".47x0ykjrrm.1.5.0.1.$52839153.0.0.0.1.0.0.0">play</title><path d="M3 32l26-16L3 0v32z" data-reactid=".47x0ykjrrm.1.5.0.1.$52839153.0.0.0.1.0.0.1"></path></svg></div><span class="duration" data-reactid=".47x0ykjrrm.1.5.0.1.$52839153.0.0.0.1.1">1:42</span></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.5.0.1.$52839153.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.5.0.1.$52839153.0.0.1.0">Going back to school: 'I'm really excited about seeing my friends'</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.5.0.1.$52839153.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.5.0.1.$52839153.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.5.0.1.$52839153.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.5.0.1.$52839153.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.5.0.1.$52839153.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.5.0.1.$52839153.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.5.0.1.$52839153.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-29T05:48:00+00:00" data-datetime="2 days ago" data-reactid=".47x0ykjrrm.1.5.0.1.$52839153.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.5.0.1.$52839153.0.0.1.2.0.0.1.0">2 days ago</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.5.0.1.$52839153.0.0.1.2.0.0.1.1">2 days ago</span></time></span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--additional-top-stories" data-reactid=".47x0ykjrrm.1.5.0.1.$52842067"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_1-12" data-reactid=".47x0ykjrrm.1.5.0.1.$52842067.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/52842067" class="newsround-promo__content newsround-promo__content--white" data-reactid=".47x0ykjrrm.1.5.0.1.$52842067.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.5.0.1.$52842067.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.5.0.1.$52842067.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/17601/production/_112554759_facup.jpg" alt="FA-Cup." class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.5.0.1.$52842067.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.5.0.1.$52842067.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.5.0.1.$52842067.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.5.0.1.$52842067.0.0.1.0">FA Cup set to kick off again from end of June</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.5.0.1.$52842067.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.5.0.1.$52842067.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.5.0.1.$52842067.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.5.0.1.$52842067.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.5.0.1.$52842067.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.5.0.1.$52842067.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.5.0.1.$52842067.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-29T12:19:57+00:00" data-datetime="2 days ago" data-reactid=".47x0ykjrrm.1.5.0.1.$52842067.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.5.0.1.$52842067.0.0.1.2.0.0.1.0">2 days ago</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.5.0.1.$52842067.0.0.1.2.0.0.1.1">2 days ago</span></time></span></div><div class="newsround-promo__comments-signpost newsround-promo__comments-signpost-without-count" data-reactid=".47x0ykjrrm.1.5.0.1.$52842067.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".47x0ykjrrm.1.5.0.1.$52842067.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.5.0.1.$52842067.0.0.1.2.1.0.0"><title data-reactid=".47x0ykjrrm.1.5.0.1.$52842067.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".47x0ykjrrm.1.5.0.1.$52842067.0.0.1.2.1.0.0.1"></path></svg></div></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--additional-top-stories" data-reactid=".47x0ykjrrm.1.5.0.1.$52837287"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_1-13" data-reactid=".47x0ykjrrm.1.5.0.1.$52837287.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/52837287" class="newsround-promo__content newsround-promo__content--white" data-reactid=".47x0ykjrrm.1.5.0.1.$52837287.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.5.0.1.$52837287.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.5.0.1.$52837287.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/8682/production/_112543443_gettyimages-1222080899-1.jpg" alt="Clap-For-Carers." class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.5.0.1.$52837287.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.5.0.1.$52837287.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.5.0.1.$52837287.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.5.0.1.$52837287.0.0.1.0">Was that the last Clap for Carers... for now?</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.5.0.1.$52837287.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.5.0.1.$52837287.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.5.0.1.$52837287.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.5.0.1.$52837287.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.5.0.1.$52837287.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.5.0.1.$52837287.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.5.0.1.$52837287.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-29T08:28:15+00:00" data-datetime="2 days ago" data-reactid=".47x0ykjrrm.1.5.0.1.$52837287.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.5.0.1.$52837287.0.0.1.2.0.0.1.0">2 days ago</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.5.0.1.$52837287.0.0.1.2.0.0.1.1">2 days ago</span></time></span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--additional-top-stories" data-reactid=".47x0ykjrrm.1.5.0.1.$52839244"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_1-14" data-reactid=".47x0ykjrrm.1.5.0.1.$52839244.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/52839244" class="newsround-promo__content newsround-promo__content--white" data-reactid=".47x0ykjrrm.1.5.0.1.$52839244.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.5.0.1.$52839244.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.5.0.1.$52839244.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/142A2/production/_112549528_mediaitem112549527.jpg" alt="how-does-contact-tracing-work" class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.5.0.1.$52839244.0.0.0.0.0"/></div><span class="newsround-promo__promolabel newsround-promo__promolabel--white newsround-promo__promolabel--duration" data-reactid=".47x0ykjrrm.1.5.0.1.$52839244.0.0.0.1"><div class="gel-icon gel-icon--play newsround-promo__icon" data-reactid=".47x0ykjrrm.1.5.0.1.$52839244.0.0.0.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.5.0.1.$52839244.0.0.0.1.0.0"><title data-reactid=".47x0ykjrrm.1.5.0.1.$52839244.0.0.0.1.0.0.0">play</title><path d="M3 32l26-16L3 0v32z" data-reactid=".47x0ykjrrm.1.5.0.1.$52839244.0.0.0.1.0.0.1"></path></svg></div><span class="duration" data-reactid=".47x0ykjrrm.1.5.0.1.$52839244.0.0.0.1.1">2:16</span></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.5.0.1.$52839244.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.5.0.1.$52839244.0.0.1.0">What is a contact tracing app and how does it work?</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.5.0.1.$52839244.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.5.0.1.$52839244.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.5.0.1.$52839244.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.5.0.1.$52839244.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.5.0.1.$52839244.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.5.0.1.$52839244.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.5.0.1.$52839244.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-29T05:56:03+00:00" data-datetime="2 days ago" data-reactid=".47x0ykjrrm.1.5.0.1.$52839244.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.5.0.1.$52839244.0.0.1.2.0.0.1.0">2 days ago</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.5.0.1.$52839244.0.0.1.2.0.0.1.1">2 days ago</span></time></span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--additional-top-stories" data-reactid=".47x0ykjrrm.1.5.0.1.$52825455"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_1-15" data-reactid=".47x0ykjrrm.1.5.0.1.$52825455.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/52825455" class="newsround-promo__content newsround-promo__content--white" data-reactid=".47x0ykjrrm.1.5.0.1.$52825455.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.5.0.1.$52825455.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.5.0.1.$52825455.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/5959/production/_112537822_gettyimages-1221521514-1.jpg" alt="Going-to-the-cinema-during-coronavirus." class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.5.0.1.$52825455.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.5.0.1.$52825455.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.5.0.1.$52825455.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.5.0.1.$52825455.0.0.1.0">Could we be back in cinemas from July?</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.5.0.1.$52825455.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.5.0.1.$52825455.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.5.0.1.$52825455.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.5.0.1.$52825455.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.5.0.1.$52825455.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.5.0.1.$52825455.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.5.0.1.$52825455.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-29T05:18:07+00:00" data-datetime="2 days ago" data-reactid=".47x0ykjrrm.1.5.0.1.$52825455.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.5.0.1.$52825455.0.0.1.2.0.0.1.0">2 days ago</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.5.0.1.$52825455.0.0.1.2.0.0.1.1">2 days ago</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".47x0ykjrrm.1.5.0.1.$52825455.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".47x0ykjrrm.1.5.0.1.$52825455.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.5.0.1.$52825455.0.0.1.2.1.0.0"><title data-reactid=".47x0ykjrrm.1.5.0.1.$52825455.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".47x0ykjrrm.1.5.0.1.$52825455.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".47x0ykjrrm.1.5.0.1.$52825455.0.0.1.2.1.1">10</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--additional-top-stories" data-reactid=".47x0ykjrrm.1.5.0.1.$51318780"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_1-16" data-reactid=".47x0ykjrrm.1.5.0.1.$51318780.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/51318780" class="newsround-promo__content newsround-promo__content--white" data-reactid=".47x0ykjrrm.1.5.0.1.$51318780.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.5.0.1.$51318780.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.5.0.1.$51318780.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/4707/production/_112538181_backgroundwithloogoo.jpg" alt="Quiz of the week" class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.5.0.1.$51318780.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.5.0.1.$51318780.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.5.0.1.$51318780.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.5.0.1.$51318780.0.0.1.0">Quiz: Have you been following this week's news?</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.5.0.1.$51318780.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.5.0.1.$51318780.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.5.0.1.$51318780.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.5.0.1.$51318780.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.5.0.1.$51318780.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.5.0.1.$51318780.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.5.0.1.$51318780.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-29T05:17:05+00:00" data-datetime="2 days ago" data-reactid=".47x0ykjrrm.1.5.0.1.$51318780.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.5.0.1.$51318780.0.0.1.2.0.0.1.0">2 days ago</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.5.0.1.$51318780.0.0.1.2.0.0.1.1">2 days ago</span></time></span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--additional-top-stories" data-reactid=".47x0ykjrrm.1.5.0.1.$43245617"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_1-17" data-reactid=".47x0ykjrrm.1.5.0.1.$43245617.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/43245617" class="newsround-promo__content newsround-promo__content--white" data-reactid=".47x0ykjrrm.1.5.0.1.$43245617.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.5.0.1.$43245617.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.5.0.1.$43245617.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/7B36/production/_112524513_p08fdg6z.jpg" alt="Man surfing and strange logo" class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.5.0.1.$43245617.0.0.0.0.0"/></div><span class="newsround-promo__promolabel newsround-promo__promolabel--white newsround-promo__promolabel--duration" data-reactid=".47x0ykjrrm.1.5.0.1.$43245617.0.0.0.1"><div class="gel-icon gel-icon--play newsround-promo__icon" data-reactid=".47x0ykjrrm.1.5.0.1.$43245617.0.0.0.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.5.0.1.$43245617.0.0.0.1.0.0"><title data-reactid=".47x0ykjrrm.1.5.0.1.$43245617.0.0.0.1.0.0.0">play</title><path d="M3 32l26-16L3 0v32z" data-reactid=".47x0ykjrrm.1.5.0.1.$43245617.0.0.0.1.0.0.1"></path></svg></div><span class="duration" data-reactid=".47x0ykjrrm.1.5.0.1.$43245617.0.0.0.1.1">1:17</span></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.5.0.1.$43245617.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.5.0.1.$43245617.0.0.1.0">Strange News</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.5.0.1.$43245617.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.5.0.1.$43245617.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.5.0.1.$43245617.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.5.0.1.$43245617.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.5.0.1.$43245617.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.5.0.1.$43245617.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.5.0.1.$43245617.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-29T05:17:21+00:00" data-datetime="2 days ago" data-reactid=".47x0ykjrrm.1.5.0.1.$43245617.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.5.0.1.$43245617.0.0.1.2.0.0.1.0">2 days ago</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.5.0.1.$43245617.0.0.1.2.0.0.1.1">2 days ago</span></time></span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--additional-top-stories" data-reactid=".47x0ykjrrm.1.5.0.1.$52826468"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_1-18" data-reactid=".47x0ykjrrm.1.5.0.1.$52826468.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/52826468" class="newsround-promo__content newsround-promo__content--white" data-reactid=".47x0ykjrrm.1.5.0.1.$52826468.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.5.0.1.$52826468.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.5.0.1.$52826468.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/A596/production/_112409324_gettyimages-1212447977.jpg" alt="Pro-democracy demonstrators calling for the city's independence protest in Tsim Sha Tsui waterfront in Hong Kong on May 10, 2020" class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.5.0.1.$52826468.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.5.0.1.$52826468.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.5.0.1.$52826468.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.5.0.1.$52826468.0.0.1.0">What's going on between Hong Kong and China?</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.5.0.1.$52826468.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.5.0.1.$52826468.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.5.0.1.$52826468.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.5.0.1.$52826468.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.5.0.1.$52826468.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.5.0.1.$52826468.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.5.0.1.$52826468.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-28T16:07:42+00:00" data-datetime="2 days ago" data-reactid=".47x0ykjrrm.1.5.0.1.$52826468.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.5.0.1.$52826468.0.0.1.2.0.0.1.0">2 days ago</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.5.0.1.$52826468.0.0.1.2.0.0.1.1">2 days ago</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".47x0ykjrrm.1.5.0.1.$52826468.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".47x0ykjrrm.1.5.0.1.$52826468.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.5.0.1.$52826468.0.0.1.2.1.0.0"><title data-reactid=".47x0ykjrrm.1.5.0.1.$52826468.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".47x0ykjrrm.1.5.0.1.$52826468.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".47x0ykjrrm.1.5.0.1.$52826468.0.0.1.2.1.1">3</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--additional-top-stories" data-reactid=".47x0ykjrrm.1.5.0.1.$52821345"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_1-19" data-reactid=".47x0ykjrrm.1.5.0.1.$52821345.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/52821345" class="newsround-promo__content newsround-promo__content--white" data-reactid=".47x0ykjrrm.1.5.0.1.$52821345.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.5.0.1.$52821345.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.5.0.1.$52821345.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/146FB/production/_112270738_gettyimages-1164902889.jpg" alt="Schoolbag and books" class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.5.0.1.$52821345.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.5.0.1.$52821345.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.5.0.1.$52821345.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.5.0.1.$52821345.0.0.1.0">How will schools change to help keep you safe?</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.5.0.1.$52821345.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.5.0.1.$52821345.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.5.0.1.$52821345.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.5.0.1.$52821345.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.5.0.1.$52821345.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.5.0.1.$52821345.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.5.0.1.$52821345.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-28T10:40:27+00:00" data-datetime="3 days ago" data-reactid=".47x0ykjrrm.1.5.0.1.$52821345.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.5.0.1.$52821345.0.0.1.2.0.0.1.0">3 days ago</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.5.0.1.$52821345.0.0.1.2.0.0.1.1">3 days ago</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".47x0ykjrrm.1.5.0.1.$52821345.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".47x0ykjrrm.1.5.0.1.$52821345.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.5.0.1.$52821345.0.0.1.2.1.0.0"><title data-reactid=".47x0ykjrrm.1.5.0.1.$52821345.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".47x0ykjrrm.1.5.0.1.$52821345.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".47x0ykjrrm.1.5.0.1.$52821345.0.0.1.2.1.1">30</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--additional-top-stories" data-reactid=".47x0ykjrrm.1.5.0.1.$52835753"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_1-20" data-reactid=".47x0ykjrrm.1.5.0.1.$52835753.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/52835753" class="newsround-promo__content newsround-promo__content--white" data-reactid=".47x0ykjrrm.1.5.0.1.$52835753.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.5.0.1.$52835753.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.5.0.1.$52835753.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/74BA/production/_112528892_061637098-1.jpg" alt="Nicola Sturgeon" class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.5.0.1.$52835753.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.5.0.1.$52835753.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.5.0.1.$52835753.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.5.0.1.$52835753.0.0.1.0">How Scotland's lockdown will look from Friday</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.5.0.1.$52835753.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.5.0.1.$52835753.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.5.0.1.$52835753.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.5.0.1.$52835753.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.5.0.1.$52835753.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.5.0.1.$52835753.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.5.0.1.$52835753.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-28T12:40:33+00:00" data-datetime="3 days ago" data-reactid=".47x0ykjrrm.1.5.0.1.$52835753.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.5.0.1.$52835753.0.0.1.2.0.0.1.0">3 days ago</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.5.0.1.$52835753.0.0.1.2.0.0.1.1">3 days ago</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".47x0ykjrrm.1.5.0.1.$52835753.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".47x0ykjrrm.1.5.0.1.$52835753.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.5.0.1.$52835753.0.0.1.2.1.0.0"><title data-reactid=".47x0ykjrrm.1.5.0.1.$52835753.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".47x0ykjrrm.1.5.0.1.$52835753.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".47x0ykjrrm.1.5.0.1.$52835753.0.0.1.2.1.1">11</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--additional-top-stories" data-reactid=".47x0ykjrrm.1.5.0.1.$52830492"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_1-21" data-reactid=".47x0ykjrrm.1.5.0.1.$52830492.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/52830492" class="newsround-promo__content newsround-promo__content--white" data-reactid=".47x0ykjrrm.1.5.0.1.$52830492.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.5.0.1.$52830492.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.5.0.1.$52830492.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/2A15/production/_112537701_gettyimages-1206602477.jpg" alt="ninja." class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.5.0.1.$52830492.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.5.0.1.$52830492.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.5.0.1.$52830492.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.5.0.1.$52830492.0.0.1.0">Ninja is hosting a Fortnite competition</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.5.0.1.$52830492.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.5.0.1.$52830492.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.5.0.1.$52830492.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.5.0.1.$52830492.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.5.0.1.$52830492.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.5.0.1.$52830492.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.5.0.1.$52830492.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-28T13:19:53+00:00" data-datetime="3 days ago" data-reactid=".47x0ykjrrm.1.5.0.1.$52830492.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.5.0.1.$52830492.0.0.1.2.0.0.1.0">3 days ago</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.5.0.1.$52830492.0.0.1.2.0.0.1.1">3 days ago</span></time></span></div><div class="newsround-promo__comments-signpost newsround-promo__comments-signpost-without-count" data-reactid=".47x0ykjrrm.1.5.0.1.$52830492.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".47x0ykjrrm.1.5.0.1.$52830492.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.5.0.1.$52830492.0.0.1.2.1.0.0"><title data-reactid=".47x0ykjrrm.1.5.0.1.$52830492.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".47x0ykjrrm.1.5.0.1.$52830492.0.0.1.2.1.0.0.1"></path></svg></div></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--additional-top-stories" data-reactid=".47x0ykjrrm.1.5.0.1.$52830491"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_1-22" data-reactid=".47x0ykjrrm.1.5.0.1.$52830491.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/52830491" class="newsround-promo__content newsround-promo__content--white" data-reactid=".47x0ykjrrm.1.5.0.1.$52830491.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.5.0.1.$52830491.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.5.0.1.$52830491.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/5A85/production/_112537132_vote1.jpg" alt="gaming-vote." class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.5.0.1.$52830491.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.5.0.1.$52830491.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.5.0.1.$52830491.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.5.0.1.$52830491.0.0.1.0">Should consoles limit your gaming time? </p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.5.0.1.$52830491.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.5.0.1.$52830491.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.5.0.1.$52830491.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.5.0.1.$52830491.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.5.0.1.$52830491.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.5.0.1.$52830491.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.5.0.1.$52830491.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-28T12:06:05+00:00" data-datetime="3 days ago" data-reactid=".47x0ykjrrm.1.5.0.1.$52830491.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.5.0.1.$52830491.0.0.1.2.0.0.1.0">3 days ago</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.5.0.1.$52830491.0.0.1.2.0.0.1.1">3 days ago</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".47x0ykjrrm.1.5.0.1.$52830491.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".47x0ykjrrm.1.5.0.1.$52830491.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.5.0.1.$52830491.0.0.1.2.1.0.0"><title data-reactid=".47x0ykjrrm.1.5.0.1.$52830491.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".47x0ykjrrm.1.5.0.1.$52830491.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".47x0ykjrrm.1.5.0.1.$52830491.0.0.1.2.1.1">33</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--additional-top-stories" data-reactid=".47x0ykjrrm.1.5.0.1.$52834343"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_1-23" data-reactid=".47x0ykjrrm.1.5.0.1.$52834343.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/52834343" class="newsround-promo__content newsround-promo__content--white" data-reactid=".47x0ykjrrm.1.5.0.1.$52834343.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.5.0.1.$52834343.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.5.0.1.$52834343.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/3AEB/production/_112538051_blackpink.jpg" alt="lady-gaga-and-blackpink." class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.5.0.1.$52834343.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.5.0.1.$52834343.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.5.0.1.$52834343.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.5.0.1.$52834343.0.0.1.0">BLACKPINK and Lady Gaga have a new song together!</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.5.0.1.$52834343.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.5.0.1.$52834343.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.5.0.1.$52834343.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.5.0.1.$52834343.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.5.0.1.$52834343.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.5.0.1.$52834343.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.5.0.1.$52834343.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-28T13:10:48+00:00" data-datetime="3 days ago" data-reactid=".47x0ykjrrm.1.5.0.1.$52834343.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.5.0.1.$52834343.0.0.1.2.0.0.1.0">3 days ago</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.5.0.1.$52834343.0.0.1.2.0.0.1.1">3 days ago</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".47x0ykjrrm.1.5.0.1.$52834343.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".47x0ykjrrm.1.5.0.1.$52834343.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.5.0.1.$52834343.0.0.1.2.1.0.0"><title data-reactid=".47x0ykjrrm.1.5.0.1.$52834343.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".47x0ykjrrm.1.5.0.1.$52834343.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".47x0ykjrrm.1.5.0.1.$52834343.0.0.1.2.1.1">5</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--additional-top-stories" data-reactid=".47x0ykjrrm.1.5.0.1.$52830119"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_1-24" data-reactid=".47x0ykjrrm.1.5.0.1.$52830119.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/52830119" class="newsround-promo__content newsround-promo__content--white" data-reactid=".47x0ykjrrm.1.5.0.1.$52830119.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.5.0.1.$52830119.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.5.0.1.$52830119.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/9C61/production/_112533004_gettyimages-1214527741.jpg" alt="woman-with-gloves-and-mask-holding-phone." class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.5.0.1.$52830119.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.5.0.1.$52830119.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.5.0.1.$52830119.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.5.0.1.$52830119.0.0.1.0">How does NHS test and trace work?</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.5.0.1.$52830119.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.5.0.1.$52830119.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.5.0.1.$52830119.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.5.0.1.$52830119.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.5.0.1.$52830119.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.5.0.1.$52830119.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.5.0.1.$52830119.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-28T07:52:49+00:00" data-datetime="3 days ago" data-reactid=".47x0ykjrrm.1.5.0.1.$52830119.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.5.0.1.$52830119.0.0.1.2.0.0.1.0">3 days ago</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.5.0.1.$52830119.0.0.1.2.0.0.1.1">3 days ago</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".47x0ykjrrm.1.5.0.1.$52830119.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".47x0ykjrrm.1.5.0.1.$52830119.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.5.0.1.$52830119.0.0.1.2.1.0.0"><title data-reactid=".47x0ykjrrm.1.5.0.1.$52830119.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".47x0ykjrrm.1.5.0.1.$52830119.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".47x0ykjrrm.1.5.0.1.$52830119.0.0.1.2.1.1">12</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--additional-top-stories" data-reactid=".47x0ykjrrm.1.5.0.1.$52831552"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_1-25" data-reactid=".47x0ykjrrm.1.5.0.1.$52831552.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/52831552" class="newsround-promo__content newsround-promo__content--white" data-reactid=".47x0ykjrrm.1.5.0.1.$52831552.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.5.0.1.$52831552.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.5.0.1.$52831552.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/7CD1/production/_112535913_gettyimages-556634605.jpg" alt="marquee-and-welsh-dragon." class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.5.0.1.$52831552.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.5.0.1.$52831552.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.5.0.1.$52831552.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.5.0.1.$52831552.0.0.1.0">Virtual Eisteddfod 'has been incredible'!</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.5.0.1.$52831552.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.5.0.1.$52831552.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.5.0.1.$52831552.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.5.0.1.$52831552.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.5.0.1.$52831552.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.5.0.1.$52831552.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.5.0.1.$52831552.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-28T10:55:27+00:00" data-datetime="3 days ago" data-reactid=".47x0ykjrrm.1.5.0.1.$52831552.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.5.0.1.$52831552.0.0.1.2.0.0.1.0">3 days ago</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.5.0.1.$52831552.0.0.1.2.0.0.1.1">3 days ago</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".47x0ykjrrm.1.5.0.1.$52831552.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".47x0ykjrrm.1.5.0.1.$52831552.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.5.0.1.$52831552.0.0.1.2.1.0.0"><title data-reactid=".47x0ykjrrm.1.5.0.1.$52831552.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".47x0ykjrrm.1.5.0.1.$52831552.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".47x0ykjrrm.1.5.0.1.$52831552.0.0.1.2.1.1">1</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--additional-top-stories" data-reactid=".47x0ykjrrm.1.5.0.1.$52830196"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_1-26" data-reactid=".47x0ykjrrm.1.5.0.1.$52830196.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/52830196" class="newsround-promo__content newsround-promo__content--white" data-reactid=".47x0ykjrrm.1.5.0.1.$52830196.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.5.0.1.$52830196.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.5.0.1.$52830196.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/4603/production/_112532971_tv061659789.jpg" alt="rocket" class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.5.0.1.$52830196.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.5.0.1.$52830196.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.5.0.1.$52830196.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.5.0.1.$52830196.0.0.1.0">Bad weather delays Space X launch</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.5.0.1.$52830196.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.5.0.1.$52830196.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.5.0.1.$52830196.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.5.0.1.$52830196.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.5.0.1.$52830196.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.5.0.1.$52830196.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.5.0.1.$52830196.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-28T10:35:41+00:00" data-datetime="3 days ago" data-reactid=".47x0ykjrrm.1.5.0.1.$52830196.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.5.0.1.$52830196.0.0.1.2.0.0.1.0">3 days ago</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.5.0.1.$52830196.0.0.1.2.0.0.1.1">3 days ago</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".47x0ykjrrm.1.5.0.1.$52830196.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".47x0ykjrrm.1.5.0.1.$52830196.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.5.0.1.$52830196.0.0.1.2.1.0.0"><title data-reactid=".47x0ykjrrm.1.5.0.1.$52830196.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".47x0ykjrrm.1.5.0.1.$52830196.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".47x0ykjrrm.1.5.0.1.$52830196.0.0.1.2.1.1">16</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--additional-top-stories" data-reactid=".47x0ykjrrm.1.5.0.1.$52822683"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_1-27" data-reactid=".47x0ykjrrm.1.5.0.1.$52822683.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/52822683" class="newsround-promo__content newsround-promo__content--white" data-reactid=".47x0ykjrrm.1.5.0.1.$52822683.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.5.0.1.$52822683.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.5.0.1.$52822683.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/105F6/production/_112526076_gettyimages-1146662108.jpg" alt="Pink and yellow moth." class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.5.0.1.$52822683.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.5.0.1.$52822683.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.5.0.1.$52822683.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.5.0.1.$52822683.0.0.1.0">The milkshake-coloured moth causing a stir online</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.5.0.1.$52822683.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.5.0.1.$52822683.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.5.0.1.$52822683.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.5.0.1.$52822683.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.5.0.1.$52822683.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.5.0.1.$52822683.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.5.0.1.$52822683.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-28T08:18:04+00:00" data-datetime="3 days ago" data-reactid=".47x0ykjrrm.1.5.0.1.$52822683.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.5.0.1.$52822683.0.0.1.2.0.0.1.0">3 days ago</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.5.0.1.$52822683.0.0.1.2.0.0.1.1">3 days ago</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".47x0ykjrrm.1.5.0.1.$52822683.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".47x0ykjrrm.1.5.0.1.$52822683.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.5.0.1.$52822683.0.0.1.2.1.0.0"><title data-reactid=".47x0ykjrrm.1.5.0.1.$52822683.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".47x0ykjrrm.1.5.0.1.$52822683.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".47x0ykjrrm.1.5.0.1.$52822683.0.0.1.2.1.1">13</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--additional-top-stories" data-reactid=".47x0ykjrrm.1.5.0.1.$52830770"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_1-28" data-reactid=".47x0ykjrrm.1.5.0.1.$52830770.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/52830770" class="newsround-promo__content newsround-promo__content--white" data-reactid=".47x0ykjrrm.1.5.0.1.$52830770.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.5.0.1.$52830770.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.5.0.1.$52830770.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/B7B9/production/_112533074_jamespeach.jpg" alt="duchess-of-cornwall-josh-gad-and-lupita-nyongo." class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.5.0.1.$52830770.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.5.0.1.$52830770.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.5.0.1.$52830770.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.5.0.1.$52830770.0.0.1.0">The Duchess of Cornwall takes on James and the Giant Peach!</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.5.0.1.$52830770.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.5.0.1.$52830770.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.5.0.1.$52830770.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.5.0.1.$52830770.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.5.0.1.$52830770.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.5.0.1.$52830770.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.5.0.1.$52830770.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-28T08:34:50+00:00" data-datetime="3 days ago" data-reactid=".47x0ykjrrm.1.5.0.1.$52830770.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.5.0.1.$52830770.0.0.1.2.0.0.1.0">3 days ago</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.5.0.1.$52830770.0.0.1.2.0.0.1.1">3 days ago</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".47x0ykjrrm.1.5.0.1.$52830770.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".47x0ykjrrm.1.5.0.1.$52830770.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.5.0.1.$52830770.0.0.1.2.1.0.0"><title data-reactid=".47x0ykjrrm.1.5.0.1.$52830770.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".47x0ykjrrm.1.5.0.1.$52830770.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".47x0ykjrrm.1.5.0.1.$52830770.0.0.1.2.1.1">3</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--additional-top-stories" data-reactid=".47x0ykjrrm.1.5.0.1.$52830244"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_1-29" data-reactid=".47x0ykjrrm.1.5.0.1.$52830244.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/52830244" class="newsround-promo__content newsround-promo__content--white" data-reactid=".47x0ykjrrm.1.5.0.1.$52830244.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.5.0.1.$52830244.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.5.0.1.$52830244.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/903B/production/_112532963_pigeon.jpg" alt="pigeon spy" class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.5.0.1.$52830244.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.5.0.1.$52830244.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.5.0.1.$52830244.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.5.0.1.$52830244.0.0.1.0">Pigeon 'spy' arrested in India</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.5.0.1.$52830244.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.5.0.1.$52830244.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.5.0.1.$52830244.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.5.0.1.$52830244.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.5.0.1.$52830244.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.5.0.1.$52830244.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.5.0.1.$52830244.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-28T06:28:32+00:00" data-datetime="3 days ago" data-reactid=".47x0ykjrrm.1.5.0.1.$52830244.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.5.0.1.$52830244.0.0.1.2.0.0.1.0">3 days ago</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.5.0.1.$52830244.0.0.1.2.0.0.1.1">3 days ago</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".47x0ykjrrm.1.5.0.1.$52830244.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".47x0ykjrrm.1.5.0.1.$52830244.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.5.0.1.$52830244.0.0.1.2.1.0.0"><title data-reactid=".47x0ykjrrm.1.5.0.1.$52830244.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".47x0ykjrrm.1.5.0.1.$52830244.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".47x0ykjrrm.1.5.0.1.$52830244.0.0.1.2.1.1">24</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--additional-top-stories" data-reactid=".47x0ykjrrm.1.5.0.1.$52821768"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_1-30" data-reactid=".47x0ykjrrm.1.5.0.1.$52821768.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/52821768" class="newsround-promo__content newsround-promo__content--white" data-reactid=".47x0ykjrrm.1.5.0.1.$52821768.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.5.0.1.$52821768.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.5.0.1.$52821768.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/7ABF/production/_112532413_finalmake.png" alt="sun catcher" class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.5.0.1.$52821768.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.5.0.1.$52821768.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.5.0.1.$52821768.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.5.0.1.$52821768.0.0.1.0">How to make a suncatcher</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.5.0.1.$52821768.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.5.0.1.$52821768.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.5.0.1.$52821768.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.5.0.1.$52821768.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.5.0.1.$52821768.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.5.0.1.$52821768.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.5.0.1.$52821768.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-28T05:53:37+00:00" data-datetime="3 days ago" data-reactid=".47x0ykjrrm.1.5.0.1.$52821768.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.5.0.1.$52821768.0.0.1.2.0.0.1.0">3 days ago</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.5.0.1.$52821768.0.0.1.2.0.0.1.1">3 days ago</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".47x0ykjrrm.1.5.0.1.$52821768.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".47x0ykjrrm.1.5.0.1.$52821768.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.5.0.1.$52821768.0.0.1.2.1.0.0"><title data-reactid=".47x0ykjrrm.1.5.0.1.$52821768.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".47x0ykjrrm.1.5.0.1.$52821768.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".47x0ykjrrm.1.5.0.1.$52821768.0.0.1.2.1.1">7</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--additional-top-stories" data-reactid=".47x0ykjrrm.1.5.0.1.$52755625"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_1-31" data-reactid=".47x0ykjrrm.1.5.0.1.$52755625.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/52755625" class="newsround-promo__content newsround-promo__content--white" data-reactid=".47x0ykjrrm.1.5.0.1.$52755625.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.5.0.1.$52755625.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.5.0.1.$52755625.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/058F/production/_112532410_91748592_1557468474418549_7233896572067512320_o.jpg" alt="Xavier Woods" class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.5.0.1.$52755625.0.0.0.0.0"/></div><span class="newsround-promo__promolabel newsround-promo__promolabel--white newsround-promo__promolabel--duration" data-reactid=".47x0ykjrrm.1.5.0.1.$52755625.0.0.0.1"><div class="gel-icon gel-icon--play newsround-promo__icon" data-reactid=".47x0ykjrrm.1.5.0.1.$52755625.0.0.0.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.5.0.1.$52755625.0.0.0.1.0.0"><title data-reactid=".47x0ykjrrm.1.5.0.1.$52755625.0.0.0.1.0.0.0">play</title><path d="M3 32l26-16L3 0v32z" data-reactid=".47x0ykjrrm.1.5.0.1.$52755625.0.0.0.1.0.0.1"></path></svg></div><span class="duration" data-reactid=".47x0ykjrrm.1.5.0.1.$52755625.0.0.0.1.1">2:48</span></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.5.0.1.$52755625.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.5.0.1.$52755625.0.0.1.0">Xavier Woods: 'WWE can help make E-Sports bigger'</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.5.0.1.$52755625.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.5.0.1.$52755625.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.5.0.1.$52755625.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.5.0.1.$52755625.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.5.0.1.$52755625.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.5.0.1.$52755625.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.5.0.1.$52755625.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-28T05:20:35+00:00" data-datetime="3 days ago" data-reactid=".47x0ykjrrm.1.5.0.1.$52755625.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.5.0.1.$52755625.0.0.1.2.0.0.1.0">3 days ago</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.5.0.1.$52755625.0.0.1.2.0.0.1.1">3 days ago</span></time></span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--additional-top-stories" data-reactid=".47x0ykjrrm.1.5.0.1.$52823058"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_1-32" data-reactid=".47x0ykjrrm.1.5.0.1.$52823058.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/52823058" class="newsround-promo__content newsround-promo__content--white" data-reactid=".47x0ykjrrm.1.5.0.1.$52823058.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.5.0.1.$52823058.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.5.0.1.$52823058.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/14A02/production/_112528448_fc44399dde081d98da5a78e5d502eab3_f224.jpg" alt="The-Derby-Arboretum" class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.5.0.1.$52823058.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.5.0.1.$52823058.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.5.0.1.$52823058.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.5.0.1.$52823058.0.0.1.0">Green spaces 'must be protected and enhanced'</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.5.0.1.$52823058.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.5.0.1.$52823058.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.5.0.1.$52823058.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.5.0.1.$52823058.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.5.0.1.$52823058.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.5.0.1.$52823058.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.5.0.1.$52823058.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-28T06:07:59+00:00" data-datetime="3 days ago" data-reactid=".47x0ykjrrm.1.5.0.1.$52823058.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.5.0.1.$52823058.0.0.1.2.0.0.1.0">3 days ago</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.5.0.1.$52823058.0.0.1.2.0.0.1.1">3 days ago</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".47x0ykjrrm.1.5.0.1.$52823058.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".47x0ykjrrm.1.5.0.1.$52823058.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.5.0.1.$52823058.0.0.1.2.1.0.0"><title data-reactid=".47x0ykjrrm.1.5.0.1.$52823058.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".47x0ykjrrm.1.5.0.1.$52823058.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".47x0ykjrrm.1.5.0.1.$52823058.0.0.1.2.1.1">3</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--additional-top-stories" data-reactid=".47x0ykjrrm.1.5.0.1.$52817090"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_1-33" data-reactid=".47x0ykjrrm.1.5.0.1.$52817090.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/52817090" class="newsround-promo__content newsround-promo__content--white" data-reactid=".47x0ykjrrm.1.5.0.1.$52817090.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.5.0.1.$52817090.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.5.0.1.$52817090.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/39E4/production/_112502841_ickabog.png" alt="Front page of The Ickabog" class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.5.0.1.$52817090.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.5.0.1.$52817090.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.5.0.1.$52817090.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.5.0.1.$52817090.0.0.1.0">Are you reading The Ickabog? Send us your reviews!</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.5.0.1.$52817090.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.5.0.1.$52817090.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.5.0.1.$52817090.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.5.0.1.$52817090.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.5.0.1.$52817090.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.5.0.1.$52817090.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.5.0.1.$52817090.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-27T07:53:42+00:00" data-datetime="4 days ago" data-reactid=".47x0ykjrrm.1.5.0.1.$52817090.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.5.0.1.$52817090.0.0.1.2.0.0.1.0">4 days ago</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.5.0.1.$52817090.0.0.1.2.0.0.1.1">4 days ago</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".47x0ykjrrm.1.5.0.1.$52817090.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".47x0ykjrrm.1.5.0.1.$52817090.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.5.0.1.$52817090.0.0.1.2.1.0.0"><title data-reactid=".47x0ykjrrm.1.5.0.1.$52817090.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".47x0ykjrrm.1.5.0.1.$52817090.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".47x0ykjrrm.1.5.0.1.$52817090.0.0.1.2.1.1">33</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--additional-top-stories" data-reactid=".47x0ykjrrm.1.5.0.1.$52818553"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_1-34" data-reactid=".47x0ykjrrm.1.5.0.1.$52818553.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/52818553" class="newsround-promo__content newsround-promo__content--white" data-reactid=".47x0ykjrrm.1.5.0.1.$52818553.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.5.0.1.$52818553.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.5.0.1.$52818553.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/CBB8/production/_112525125_shutterstock_editorial_10524242j.jpg" alt="Minnie Mouse in Disneyland Tokyo" class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.5.0.1.$52818553.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.5.0.1.$52818553.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.5.0.1.$52818553.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.5.0.1.$52818553.0.0.1.0">Could Tokyo Disneyland reopen with 'no screaming' rule?</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.5.0.1.$52818553.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.5.0.1.$52818553.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.5.0.1.$52818553.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.5.0.1.$52818553.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.5.0.1.$52818553.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.5.0.1.$52818553.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.5.0.1.$52818553.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-27T13:48:26+00:00" data-datetime="4 days ago" data-reactid=".47x0ykjrrm.1.5.0.1.$52818553.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.5.0.1.$52818553.0.0.1.2.0.0.1.0">4 days ago</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.5.0.1.$52818553.0.0.1.2.0.0.1.1">4 days ago</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".47x0ykjrrm.1.5.0.1.$52818553.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".47x0ykjrrm.1.5.0.1.$52818553.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.5.0.1.$52818553.0.0.1.2.1.0.0"><title data-reactid=".47x0ykjrrm.1.5.0.1.$52818553.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".47x0ykjrrm.1.5.0.1.$52818553.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".47x0ykjrrm.1.5.0.1.$52818553.0.0.1.2.1.1">6</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--additional-top-stories" data-reactid=".47x0ykjrrm.1.5.0.1.$52788389"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_1-35" data-reactid=".47x0ykjrrm.1.5.0.1.$52788389.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/52788389" class="newsround-promo__content newsround-promo__content--white" data-reactid=".47x0ykjrrm.1.5.0.1.$52788389.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.5.0.1.$52788389.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.5.0.1.$52788389.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/A80F/production/_112432034_aaaaa061604812-1.jpg" alt="HK" class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.5.0.1.$52788389.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.5.0.1.$52788389.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.5.0.1.$52788389.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.5.0.1.$52788389.0.0.1.0">Why are there more protests in Hong Kong?</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.5.0.1.$52788389.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.5.0.1.$52788389.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.5.0.1.$52788389.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.5.0.1.$52788389.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.5.0.1.$52788389.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.5.0.1.$52788389.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.5.0.1.$52788389.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-27T12:15:29+00:00" data-datetime="4 days ago" data-reactid=".47x0ykjrrm.1.5.0.1.$52788389.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.5.0.1.$52788389.0.0.1.2.0.0.1.0">4 days ago</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.5.0.1.$52788389.0.0.1.2.0.0.1.1">4 days ago</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".47x0ykjrrm.1.5.0.1.$52788389.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".47x0ykjrrm.1.5.0.1.$52788389.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.5.0.1.$52788389.0.0.1.2.1.0.0"><title data-reactid=".47x0ykjrrm.1.5.0.1.$52788389.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".47x0ykjrrm.1.5.0.1.$52788389.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".47x0ykjrrm.1.5.0.1.$52788389.0.0.1.2.1.1">34</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--additional-top-stories" data-reactid=".47x0ykjrrm.1.5.0.1.$52806820"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_1-36" data-reactid=".47x0ykjrrm.1.5.0.1.$52806820.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/52806820" class="newsround-promo__content newsround-promo__content--white" data-reactid=".47x0ykjrrm.1.5.0.1.$52806820.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.5.0.1.$52806820.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.5.0.1.$52806820.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/11C9D/production/_112516827_index.jpg" alt="nikki-lilly-ellie-simmonds-tim-peake-marcus-rashford" class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.5.0.1.$52806820.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.5.0.1.$52806820.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.5.0.1.$52806820.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.5.0.1.$52806820.0.0.1.0">Which of these would be your top celeb supply teacher?</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.5.0.1.$52806820.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.5.0.1.$52806820.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.5.0.1.$52806820.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.5.0.1.$52806820.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.5.0.1.$52806820.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.5.0.1.$52806820.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.5.0.1.$52806820.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-27T06:09:44+00:00" data-datetime="4 days ago" data-reactid=".47x0ykjrrm.1.5.0.1.$52806820.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.5.0.1.$52806820.0.0.1.2.0.0.1.0">4 days ago</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.5.0.1.$52806820.0.0.1.2.0.0.1.1">4 days ago</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".47x0ykjrrm.1.5.0.1.$52806820.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".47x0ykjrrm.1.5.0.1.$52806820.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.5.0.1.$52806820.0.0.1.2.1.0.0"><title data-reactid=".47x0ykjrrm.1.5.0.1.$52806820.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".47x0ykjrrm.1.5.0.1.$52806820.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".47x0ykjrrm.1.5.0.1.$52806820.0.0.1.2.1.1">52</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--additional-top-stories" data-reactid=".47x0ykjrrm.1.5.0.1.$52503088"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_1-37" data-reactid=".47x0ykjrrm.1.5.0.1.$52503088.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/52503088" class="newsround-promo__content newsround-promo__content--white" data-reactid=".47x0ykjrrm.1.5.0.1.$52503088.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.5.0.1.$52503088.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.5.0.1.$52503088.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/A600/production/_112069424_gettyimages-1210873668.jpg" alt="Pictures of fans, players, coaches and staff of Bundesliga club Borussia Moenchengladbach are seen at Borussia-Park" class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.5.0.1.$52503088.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.5.0.1.$52503088.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.5.0.1.$52503088.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.5.0.1.$52503088.0.0.1.0">How football might look behind closed doors</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.5.0.1.$52503088.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.5.0.1.$52503088.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.5.0.1.$52503088.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.5.0.1.$52503088.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.5.0.1.$52503088.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.5.0.1.$52503088.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.5.0.1.$52503088.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-27T14:56:42+00:00" data-datetime="3 days ago" data-reactid=".47x0ykjrrm.1.5.0.1.$52503088.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.5.0.1.$52503088.0.0.1.2.0.0.1.0">3 days ago</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.5.0.1.$52503088.0.0.1.2.0.0.1.1">3 days ago</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".47x0ykjrrm.1.5.0.1.$52503088.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".47x0ykjrrm.1.5.0.1.$52503088.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.5.0.1.$52503088.0.0.1.2.1.0.0"><title data-reactid=".47x0ykjrrm.1.5.0.1.$52503088.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".47x0ykjrrm.1.5.0.1.$52503088.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".47x0ykjrrm.1.5.0.1.$52503088.0.0.1.2.1.1">12</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--additional-top-stories" data-reactid=".47x0ykjrrm.1.5.0.1.$47218511"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_1-38" data-reactid=".47x0ykjrrm.1.5.0.1.$47218511.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/47218511" class="newsround-promo__content newsround-promo__content--white" data-reactid=".47x0ykjrrm.1.5.0.1.$47218511.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.5.0.1.$47218511.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.5.0.1.$47218511.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/5106/production/_112524702_gettyimages-1060377808.jpg" alt="Jimmy Fallon" class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.5.0.1.$47218511.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.5.0.1.$47218511.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.5.0.1.$47218511.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.5.0.1.$47218511.0.0.1.0">What is blackface?</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.5.0.1.$47218511.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.5.0.1.$47218511.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.5.0.1.$47218511.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.5.0.1.$47218511.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.5.0.1.$47218511.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.5.0.1.$47218511.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.5.0.1.$47218511.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-27T11:11:51+00:00" data-datetime="4 days ago" data-reactid=".47x0ykjrrm.1.5.0.1.$47218511.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.5.0.1.$47218511.0.0.1.2.0.0.1.0">4 days ago</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.5.0.1.$47218511.0.0.1.2.0.0.1.1">4 days ago</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".47x0ykjrrm.1.5.0.1.$47218511.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".47x0ykjrrm.1.5.0.1.$47218511.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.5.0.1.$47218511.0.0.1.2.1.0.0"><title data-reactid=".47x0ykjrrm.1.5.0.1.$47218511.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".47x0ykjrrm.1.5.0.1.$47218511.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".47x0ykjrrm.1.5.0.1.$47218511.0.0.1.2.1.1">2</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--additional-top-stories" data-reactid=".47x0ykjrrm.1.5.0.1.$51376710"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_1-39" data-reactid=".47x0ykjrrm.1.5.0.1.$51376710.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/51376710" class="newsround-promo__content newsround-promo__content--white" data-reactid=".47x0ykjrrm.1.5.0.1.$51376710.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.5.0.1.$51376710.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.5.0.1.$51376710.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/F961/production/_112514836_p08f6nxy.jpg" alt="Earth from space" class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.5.0.1.$51376710.0.0.0.0.0"/></div><span class="newsround-promo__promolabel newsround-promo__promolabel--white newsround-promo__promolabel--duration" data-reactid=".47x0ykjrrm.1.5.0.1.$51376710.0.0.0.1"><div class="gel-icon gel-icon--play newsround-promo__icon" data-reactid=".47x0ykjrrm.1.5.0.1.$51376710.0.0.0.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.5.0.1.$51376710.0.0.0.1.0.0"><title data-reactid=".47x0ykjrrm.1.5.0.1.$51376710.0.0.0.1.0.0.0">play</title><path d="M3 32l26-16L3 0v32z" data-reactid=".47x0ykjrrm.1.5.0.1.$51376710.0.0.0.1.0.0.1"></path></svg></div><span class="duration" data-reactid=".47x0ykjrrm.1.5.0.1.$51376710.0.0.0.1.1">1:42</span></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.5.0.1.$51376710.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.5.0.1.$51376710.0.0.1.0">Your Planet: the latest environment news</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.5.0.1.$51376710.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.5.0.1.$51376710.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.5.0.1.$51376710.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.5.0.1.$51376710.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.5.0.1.$51376710.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.5.0.1.$51376710.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.5.0.1.$51376710.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-27T07:07:00+00:00" data-datetime="4 days ago" data-reactid=".47x0ykjrrm.1.5.0.1.$51376710.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.5.0.1.$51376710.0.0.1.2.0.0.1.0">4 days ago</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.5.0.1.$51376710.0.0.1.2.0.0.1.1">4 days ago</span></time></span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--additional-top-stories" data-reactid=".47x0ykjrrm.1.5.0.1.$52806640"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_1-40" data-reactid=".47x0ykjrrm.1.5.0.1.$52806640.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/52806640" class="newsround-promo__content newsround-promo__content--white" data-reactid=".47x0ykjrrm.1.5.0.1.$52806640.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.5.0.1.$52806640.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.5.0.1.$52806640.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/11AF6/production/_112483427_crayola.jpg" alt="crayola-skin-colour-crayons." class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.5.0.1.$52806640.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.5.0.1.$52806640.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.5.0.1.$52806640.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.5.0.1.$52806640.0.0.1.0">Crayons for all skin tones</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.5.0.1.$52806640.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.5.0.1.$52806640.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.5.0.1.$52806640.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.5.0.1.$52806640.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.5.0.1.$52806640.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.5.0.1.$52806640.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.5.0.1.$52806640.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-26T13:10:14+00:00" data-datetime="5 days ago" data-reactid=".47x0ykjrrm.1.5.0.1.$52806640.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.5.0.1.$52806640.0.0.1.2.0.0.1.0">5 days ago</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.5.0.1.$52806640.0.0.1.2.0.0.1.1">5 days ago</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".47x0ykjrrm.1.5.0.1.$52806640.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".47x0ykjrrm.1.5.0.1.$52806640.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.5.0.1.$52806640.0.0.1.2.1.0.0"><title data-reactid=".47x0ykjrrm.1.5.0.1.$52806640.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".47x0ykjrrm.1.5.0.1.$52806640.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".47x0ykjrrm.1.5.0.1.$52806640.0.0.1.2.1.1">19</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--additional-top-stories" data-reactid=".47x0ykjrrm.1.5.0.1.$52805854"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_1-41" data-reactid=".47x0ykjrrm.1.5.0.1.$52805854.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/52805854" class="newsround-promo__content newsround-promo__content--white" data-reactid=".47x0ykjrrm.1.5.0.1.$52805854.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.5.0.1.$52805854.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.5.0.1.$52805854.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/12CBB/production/_112478967_zacdrawing.jpg" alt="Zach with his pictures." class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.5.0.1.$52805854.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.5.0.1.$52805854.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.5.0.1.$52805854.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.5.0.1.$52805854.0.0.1.0">How animals are helping to raise money during lockdown</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.5.0.1.$52805854.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.5.0.1.$52805854.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.5.0.1.$52805854.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.5.0.1.$52805854.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.5.0.1.$52805854.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.5.0.1.$52805854.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.5.0.1.$52805854.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-26T12:59:20+00:00" data-datetime="5 days ago" data-reactid=".47x0ykjrrm.1.5.0.1.$52805854.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.5.0.1.$52805854.0.0.1.2.0.0.1.0">5 days ago</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.5.0.1.$52805854.0.0.1.2.0.0.1.1">5 days ago</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".47x0ykjrrm.1.5.0.1.$52805854.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".47x0ykjrrm.1.5.0.1.$52805854.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.5.0.1.$52805854.0.0.1.2.1.0.0"><title data-reactid=".47x0ykjrrm.1.5.0.1.$52805854.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".47x0ykjrrm.1.5.0.1.$52805854.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".47x0ykjrrm.1.5.0.1.$52805854.0.0.1.2.1.1">3</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--additional-top-stories" data-reactid=".47x0ykjrrm.1.5.0.1.$52812882"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_1-42" data-reactid=".47x0ykjrrm.1.5.0.1.$52812882.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/52812882" class="newsround-promo__content newsround-promo__content--white" data-reactid=".47x0ykjrrm.1.5.0.1.$52812882.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.5.0.1.$52812882.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.5.0.1.$52812882.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/184D0/production/_109463599_gettyimages-482211501.jpg" alt="Jacqueline-wilson." class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.5.0.1.$52812882.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.5.0.1.$52812882.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.5.0.1.$52812882.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.5.0.1.$52812882.0.0.1.0">Jacqueline Wilson gets 'silly' for Summer Reading Challenge</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.5.0.1.$52812882.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.5.0.1.$52812882.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.5.0.1.$52812882.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.5.0.1.$52812882.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.5.0.1.$52812882.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.5.0.1.$52812882.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.5.0.1.$52812882.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-27T06:19:33+00:00" data-datetime="4 days ago" data-reactid=".47x0ykjrrm.1.5.0.1.$52812882.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.5.0.1.$52812882.0.0.1.2.0.0.1.0">4 days ago</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.5.0.1.$52812882.0.0.1.2.0.0.1.1">4 days ago</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".47x0ykjrrm.1.5.0.1.$52812882.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".47x0ykjrrm.1.5.0.1.$52812882.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.5.0.1.$52812882.0.0.1.2.1.0.0"><title data-reactid=".47x0ykjrrm.1.5.0.1.$52812882.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".47x0ykjrrm.1.5.0.1.$52812882.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".47x0ykjrrm.1.5.0.1.$52812882.0.0.1.2.1.1">19</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--additional-top-stories" data-reactid=".47x0ykjrrm.1.5.0.1.$52185414"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_1-43" data-reactid=".47x0ykjrrm.1.5.0.1.$52185414.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/52185414" class="newsround-promo__content newsround-promo__content--white" data-reactid=".47x0ykjrrm.1.5.0.1.$52185414.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.5.0.1.$52185414.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.5.0.1.$52185414.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/89FB/production/_111632353_p088t598.jpg" alt="Mya-Rose-Bird-girl." class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.5.0.1.$52185414.0.0.0.0.0"/></div><span class="newsround-promo__promolabel newsround-promo__promolabel--white newsround-promo__promolabel--duration" data-reactid=".47x0ykjrrm.1.5.0.1.$52185414.0.0.0.1"><div class="gel-icon gel-icon--play newsround-promo__icon" data-reactid=".47x0ykjrrm.1.5.0.1.$52185414.0.0.0.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.5.0.1.$52185414.0.0.0.1.0.0"><title data-reactid=".47x0ykjrrm.1.5.0.1.$52185414.0.0.0.1.0.0.0">play</title><path d="M3 32l26-16L3 0v32z" data-reactid=".47x0ykjrrm.1.5.0.1.$52185414.0.0.0.1.0.0.1"></path></svg></div><span class="duration" data-reactid=".47x0ykjrrm.1.5.0.1.$52185414.0.0.0.1.1">2:15</span></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.5.0.1.$52185414.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.5.0.1.$52185414.0.0.1.0">Bird girl: I won't stop 'trying to make things better'</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.5.0.1.$52185414.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.5.0.1.$52185414.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.5.0.1.$52185414.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.5.0.1.$52185414.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.5.0.1.$52185414.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.5.0.1.$52185414.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.5.0.1.$52185414.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-26T05:23:45+00:00" data-datetime="5 days ago" data-reactid=".47x0ykjrrm.1.5.0.1.$52185414.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.5.0.1.$52185414.0.0.1.2.0.0.1.0">5 days ago</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.5.0.1.$52185414.0.0.1.2.0.0.1.1">5 days ago</span></time></span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--additional-top-stories" data-reactid=".47x0ykjrrm.1.5.0.1.$52800146"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_1-44" data-reactid=".47x0ykjrrm.1.5.0.1.$52800146.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/52800146" class="newsround-promo__content newsround-promo__content--white" data-reactid=".47x0ykjrrm.1.5.0.1.$52800146.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.5.0.1.$52800146.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.5.0.1.$52800146.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/99F6/production/_112441493_shutterstock_editorial_10559427ck.jpg" alt="female-football players." class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.5.0.1.$52800146.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.5.0.1.$52800146.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.5.0.1.$52800146.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.5.0.1.$52800146.0.0.1.0">The Women's Super League and Women's Championship seasons have ended</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.5.0.1.$52800146.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.5.0.1.$52800146.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.5.0.1.$52800146.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.5.0.1.$52800146.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.5.0.1.$52800146.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.5.0.1.$52800146.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.5.0.1.$52800146.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-26T05:26:45+00:00" data-datetime="5 days ago" data-reactid=".47x0ykjrrm.1.5.0.1.$52800146.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.5.0.1.$52800146.0.0.1.2.0.0.1.0">5 days ago</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.5.0.1.$52800146.0.0.1.2.0.0.1.1">5 days ago</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".47x0ykjrrm.1.5.0.1.$52800146.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".47x0ykjrrm.1.5.0.1.$52800146.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.5.0.1.$52800146.0.0.1.2.1.0.0"><title data-reactid=".47x0ykjrrm.1.5.0.1.$52800146.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".47x0ykjrrm.1.5.0.1.$52800146.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".47x0ykjrrm.1.5.0.1.$52800146.0.0.1.2.1.1">4</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--additional-top-stories" data-reactid=".47x0ykjrrm.1.5.0.1.$52711367"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_1-45" data-reactid=".47x0ykjrrm.1.5.0.1.$52711367.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/52711367" class="newsround-promo__content newsround-promo__content--white" data-reactid=".47x0ykjrrm.1.5.0.1.$52711367.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.5.0.1.$52711367.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.5.0.1.$52711367.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/FBF1/production/_112479446_gettyimages-1187238432.jpg" alt="boy-in-tent." class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.5.0.1.$52711367.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.5.0.1.$52711367.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.5.0.1.$52711367.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.5.0.1.$52711367.0.0.1.0">How to camp at home this half term</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.5.0.1.$52711367.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.5.0.1.$52711367.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.5.0.1.$52711367.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.5.0.1.$52711367.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.5.0.1.$52711367.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.5.0.1.$52711367.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.5.0.1.$52711367.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-26T05:47:24+00:00" data-datetime="5 days ago" data-reactid=".47x0ykjrrm.1.5.0.1.$52711367.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.5.0.1.$52711367.0.0.1.2.0.0.1.0">5 days ago</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.5.0.1.$52711367.0.0.1.2.0.0.1.1">5 days ago</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".47x0ykjrrm.1.5.0.1.$52711367.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".47x0ykjrrm.1.5.0.1.$52711367.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.5.0.1.$52711367.0.0.1.2.1.0.0"><title data-reactid=".47x0ykjrrm.1.5.0.1.$52711367.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".47x0ykjrrm.1.5.0.1.$52711367.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".47x0ykjrrm.1.5.0.1.$52711367.0.0.1.2.1.1">19</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--additional-top-stories" data-reactid=".47x0ykjrrm.1.5.0.1.$52788644"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_1-46" data-reactid=".47x0ykjrrm.1.5.0.1.$52788644.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/52788644" class="newsround-promo__content newsround-promo__content--white" data-reactid=".47x0ykjrrm.1.5.0.1.$52788644.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.5.0.1.$52788644.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.5.0.1.$52788644.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/17DD8/production/_112425779_p08f23wg.jpg" alt="skiddo antarctica" class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.5.0.1.$52788644.0.0.0.0.0"/></div><span class="newsround-promo__promolabel newsround-promo__promolabel--white newsround-promo__promolabel--duration" data-reactid=".47x0ykjrrm.1.5.0.1.$52788644.0.0.0.1"><div class="gel-icon gel-icon--play newsround-promo__icon" data-reactid=".47x0ykjrrm.1.5.0.1.$52788644.0.0.0.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.5.0.1.$52788644.0.0.0.1.0.0"><title data-reactid=".47x0ykjrrm.1.5.0.1.$52788644.0.0.0.1.0.0.0">play</title><path d="M3 32l26-16L3 0v32z" data-reactid=".47x0ykjrrm.1.5.0.1.$52788644.0.0.0.1.0.0.1"></path></svg></div><span class="duration" data-reactid=".47x0ykjrrm.1.5.0.1.$52788644.0.0.0.1.1">2:17</span></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.5.0.1.$52788644.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.5.0.1.$52788644.0.0.1.0">How hunting icy meteorites could protect Earth</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.5.0.1.$52788644.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.5.0.1.$52788644.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.5.0.1.$52788644.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.5.0.1.$52788644.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.5.0.1.$52788644.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.5.0.1.$52788644.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.5.0.1.$52788644.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-25T07:21:27+00:00" data-datetime="6 days ago" data-reactid=".47x0ykjrrm.1.5.0.1.$52788644.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.5.0.1.$52788644.0.0.1.2.0.0.1.0">6 days ago</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.5.0.1.$52788644.0.0.1.2.0.0.1.1">6 days ago</span></time></span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--additional-top-stories" data-reactid=".47x0ykjrrm.1.5.0.1.$52746347"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_1-47" data-reactid=".47x0ykjrrm.1.5.0.1.$52746347.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/52746347" class="newsround-promo__content newsround-promo__content--white" data-reactid=".47x0ykjrrm.1.5.0.1.$52746347.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.5.0.1.$52746347.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.5.0.1.$52746347.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/1314E/production/_112385187_gettyimages-959924926.jpg" alt="Eid" class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.5.0.1.$52746347.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.5.0.1.$52746347.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.5.0.1.$52746347.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.5.0.1.$52746347.0.0.1.0">How was Eid different this year?</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.5.0.1.$52746347.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.5.0.1.$52746347.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.5.0.1.$52746347.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.5.0.1.$52746347.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.5.0.1.$52746347.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.5.0.1.$52746347.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.5.0.1.$52746347.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-25T07:24:26+00:00" data-datetime="6 days ago" data-reactid=".47x0ykjrrm.1.5.0.1.$52746347.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.5.0.1.$52746347.0.0.1.2.0.0.1.0">6 days ago</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.5.0.1.$52746347.0.0.1.2.0.0.1.1">6 days ago</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".47x0ykjrrm.1.5.0.1.$52746347.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".47x0ykjrrm.1.5.0.1.$52746347.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.5.0.1.$52746347.0.0.1.2.1.0.0"><title data-reactid=".47x0ykjrrm.1.5.0.1.$52746347.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".47x0ykjrrm.1.5.0.1.$52746347.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".47x0ykjrrm.1.5.0.1.$52746347.0.0.1.2.1.1">21</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--additional-top-stories" data-reactid=".47x0ykjrrm.1.5.0.1.$52781543"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_1-48" data-reactid=".47x0ykjrrm.1.5.0.1.$52781543.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/52781543" class="newsround-promo__content newsround-promo__content--white" data-reactid=".47x0ykjrrm.1.5.0.1.$52781543.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.5.0.1.$52781543.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.5.0.1.$52781543.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/B4A2/production/_112424264_whatsappimage2020-05-23at07.28.47.jpg" alt="emilia-writing-a-letter-at-the-table" class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.5.0.1.$52781543.0.0.0.0.0"/></div><span class="newsround-promo__promolabel newsround-promo__promolabel--white" data-reactid=".47x0ykjrrm.1.5.0.1.$52781543.0.0.0.1"><div class="gel-icon gel-icon--image newsround-promo__icon" data-reactid=".47x0ykjrrm.1.5.0.1.$52781543.0.0.0.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.5.0.1.$52781543.0.0.0.1.0.0"><title data-reactid=".47x0ykjrrm.1.5.0.1.$52781543.0.0.0.1.0.0.0">image</title><path d="M9 5V3H4v2H0v24h32V5zm-2.5 8A2.5 2.5 0 1 1 9 10.5 2.5 2.5 0 0 1 6.5 13zM20 26a9 9 0 1 1 9-9 9 9 0 0 1-9 9z" data-reactid=".47x0ykjrrm.1.5.0.1.$52781543.0.0.0.1.0.0.1"></path><circle cx="20" cy="17" r="5.5" data-reactid=".47x0ykjrrm.1.5.0.1.$52781543.0.0.0.1.0.0.2"></circle></svg></div><span class="duration" data-reactid=".47x0ykjrrm.1.5.0.1.$52781543.0.0.0.1.1"></span></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.5.0.1.$52781543.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.5.0.1.$52781543.0.0.1.0">The Queen's 'Thank you' for Emilia</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.5.0.1.$52781543.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.5.0.1.$52781543.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.5.0.1.$52781543.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.5.0.1.$52781543.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.5.0.1.$52781543.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.5.0.1.$52781543.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.5.0.1.$52781543.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-23T10:43:21+00:00" data-datetime="23 May 2020" data-reactid=".47x0ykjrrm.1.5.0.1.$52781543.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.5.0.1.$52781543.0.0.1.2.0.0.1.0">23 May 2020</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.5.0.1.$52781543.0.0.1.2.0.0.1.1">23 May 2020</span></time></span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--additional-top-stories" data-reactid=".47x0ykjrrm.1.5.0.1.$52766497"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_1-49" data-reactid=".47x0ykjrrm.1.5.0.1.$52766497.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/52766497" class="newsround-promo__content newsround-promo__content--white" data-reactid=".47x0ykjrrm.1.5.0.1.$52766497.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.5.0.1.$52766497.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.5.0.1.$52766497.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/4589/production/_112410871_goldbars.jpg" alt="gold-bars." class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.5.0.1.$52766497.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.5.0.1.$52766497.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.5.0.1.$52766497.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.5.0.1.$52766497.0.0.1.0">Brothers find gold treasure while building a den!</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.5.0.1.$52766497.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.5.0.1.$52766497.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.5.0.1.$52766497.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.5.0.1.$52766497.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.5.0.1.$52766497.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.5.0.1.$52766497.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.5.0.1.$52766497.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-22T07:52:22+00:00" data-datetime="22 May 2020" data-reactid=".47x0ykjrrm.1.5.0.1.$52766497.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.5.0.1.$52766497.0.0.1.2.0.0.1.0">22 May 2020</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.5.0.1.$52766497.0.0.1.2.0.0.1.1">22 May 2020</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".47x0ykjrrm.1.5.0.1.$52766497.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".47x0ykjrrm.1.5.0.1.$52766497.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.5.0.1.$52766497.0.0.1.2.1.0.0"><title data-reactid=".47x0ykjrrm.1.5.0.1.$52766497.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".47x0ykjrrm.1.5.0.1.$52766497.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".47x0ykjrrm.1.5.0.1.$52766497.0.0.1.2.1.1">28</span></div></div></div></a></div></div></div></div><div class="newsround-more-stories__outer newsround-more-stories__outer--additional-top-stories" data-reactid=".47x0ykjrrm.1.5.1"><div class="gs-u-box-size newsround-more-stories__show-more-wrapper newsround-more-stories__show-more-wrapper--additional-top-stories" data-reactid=".47x0ykjrrm.1.5.1.0"><div class="newsround-more-stories__show-more newsround-more-stories__show-more--additional-top-stories" data-reactid=".47x0ykjrrm.1.5.1.0.0"><div class="newsround-more-stories__show-more-button-container newsround-more-stories__show-more-button-container--additional-top-stories" data-reactid=".47x0ykjrrm.1.5.1.0.0.0"><div class="newsround-more-stories__show-more-button" data-reactid=".47x0ykjrrm.1.5.1.0.0.0.0"><button class="newsround-button newsround-button--purple" tabindex="-1" aria-label="Show more stories" data-reactid=".47x0ykjrrm.1.5.1.0.0.0.0.0"><span data-reactid=".47x0ykjrrm.1.5.1.0.0.0.0.0.1">Show more</span></button></div></div></div></div></div></section><div data-reactid=".47x0ykjrrm.1.6"></div><section class="newsround-bulletin" data-istats-track-scroll-visibility="nr_home_bulletin_promo" data-bbc-container="home-watch-newsround" data-bbc-metadata="{"PAR":"home-watch-newsround","CHD":"promo"}" data-bbc-source="newsround" data-bbc-title="Watch Newsround " data-reactid=".47x0ykjrrm.1.7"><div class="newsround-bulletin__mobile-background" style="background:linear-gradient(transparent 50%, #011638 95%),url(https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/750/cpsprodpb/32D9/production/_112571031_p08fp8vy.jpg);background-repeat:no-repeat;background-size:100%;background-position:center;" data-reactid=".47x0ykjrrm.1.7.0"></div><div class="newsround-bulletin__wrapper" data-istats-track="true" data-istats-track-link-location="nr_home_bulletin_promo" data-reactid=".47x0ykjrrm.1.7.1"><div class="newsround-bulletin__layout" data-reactid=".47x0ykjrrm.1.7.1.0"><div class="newsround-bulletin__text-container" data-reactid=".47x0ykjrrm.1.7.1.0.0"><div class="newsround-bulletin__text-wrapper" data-reactid=".47x0ykjrrm.1.7.1.0.0.0"><h2 class="newsround-bulletin__title" data-reactid=".47x0ykjrrm.1.7.1.0.0.0.0">Watch Newsround </h2><h3 class="newsround-bulletin__subtitle" data-reactid=".47x0ykjrrm.1.7.1.0.0.0.1">De'Graft has your Sunday Newsround update. See yesterday's launch of the SpaceX rocket, the latest news on the protests in America, and how 10-year-old Lucy is feeling about going back to school.</h3><div class="newsround-bulletin__button-wrapper" data-reactid=".47x0ykjrrm.1.7.1.0.0.0.2"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/news/watch_newsround" class="newsround-button newsround-button--teal" aria-label="Watch Newsround" data-reactid=".47x0ykjrrm.1.7.1.0.0.0.2.0"><div class="gel-icon gel-icon--play newsround-button__icon" data-reactid=".47x0ykjrrm.1.7.1.0.0.0.2.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.7.1.0.0.0.2.0.0.0"><title data-reactid=".47x0ykjrrm.1.7.1.0.0.0.2.0.0.0.0">play</title><path d="M3 32l26-16L3 0v32z" data-reactid=".47x0ykjrrm.1.7.1.0.0.0.2.0.0.0.1"></path></svg></div><span data-reactid=".47x0ykjrrm.1.7.1.0.0.0.2.0.1">Watch Now</span></a></div></div></div><div class="newsround-bulletin__image-container" data-reactid=".47x0ykjrrm.1.7.1.0.1"><div class="newsround-bulletin__image-background" style="background:linear-gradient(to right, #011638 5%, transparent 30%),linear-gradient(to left, #011638 5%, transparent 30%),url(https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/750/cpsprodpb/32D9/production/_112571031_p08fp8vy.jpg);background-repeat:no-repeat;background-size:100%;background-position:center;" data-reactid=".47x0ykjrrm.1.7.1.0.1.0"></div><div class="newsround-bulletin__image-wrapper" data-reactid=".47x0ykjrrm.1.7.1.0.1.1"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/750/cpsprodpb/32D9/production/_112571031_p08fp8vy.jpg" alt="De'Graft in the Newsround studio" class="newsround-bulletin__image" data-reactid=".47x0ykjrrm.1.7.1.0.1.1.0"/><div class="newsround-bulletin__image-decoration" data-reactid=".47x0ykjrrm.1.7.1.0.1.1.1"></div></div></div></div></div><div class="newsround-bulletin__bottom-gradient" data-reactid=".47x0ykjrrm.1.7.2"></div></section><section id="more-stories-2" class="newsround-more-stories newsround-more-stories--more-stories-2" data-istats-track-scroll-visibility="nr_home_more_stories_2" data-reactid=".47x0ykjrrm.1.9"><div class="gs-u-box-size newsround-more-stories__wrapper" data-reactid=".47x0ykjrrm.1.9.0"><div class="newsround-more-stories__header" data-reactid=".47x0ykjrrm.1.9.0.0"><div class="newsround-more-stories__header-item" data-reactid=".47x0ykjrrm.1.9.0.0.0"><h2 class="newsround-more-stories__header-title newsround-more-stories__header-title--more-stories-2" data-reactid=".47x0ykjrrm.1.9.0.0.0.0">Coronavirus</h2></div></div><div class="newsround-more-stories__stories" style="height:478px;" data-reactid=".47x0ykjrrm.1.9.0.1"><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-2" data-reactid=".47x0ykjrrm.1.9.0.1.$51204456"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_2-1" data-reactid=".47x0ykjrrm.1.9.0.1.$51204456.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/51204456" class="newsround-promo__content newsround-promo__content--charcoal-purple" data-reactid=".47x0ykjrrm.1.9.0.1.$51204456.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.9.0.1.$51204456.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.9.0.1.$51204456.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/8E76/production/_112107463_thumbnail.jpg" alt="NHS in a rainbow heart" class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.9.0.1.$51204456.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.9.0.1.$51204456.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.9.0.1.$51204456.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.9.0.1.$51204456.0.0.1.0">Coronavirus: What is being done to tackle the virus?</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.9.0.1.$51204456.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.9.0.1.$51204456.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.9.0.1.$51204456.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.9.0.1.$51204456.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.9.0.1.$51204456.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.9.0.1.$51204456.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.9.0.1.$51204456.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-18T12:49:08+00:00" data-datetime="18 May 2020" data-reactid=".47x0ykjrrm.1.9.0.1.$51204456.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.9.0.1.$51204456.0.0.1.2.0.0.1.0">18 May 2020</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.9.0.1.$51204456.0.0.1.2.0.0.1.1">18 May 2020</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".47x0ykjrrm.1.9.0.1.$51204456.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".47x0ykjrrm.1.9.0.1.$51204456.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.9.0.1.$51204456.0.0.1.2.1.0.0"><title data-reactid=".47x0ykjrrm.1.9.0.1.$51204456.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".47x0ykjrrm.1.9.0.1.$51204456.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".47x0ykjrrm.1.9.0.1.$51204456.0.0.1.2.1.1">424</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-2" data-reactid=".47x0ykjrrm.1.9.0.1.$52200989"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_2-2" data-reactid=".47x0ykjrrm.1.9.0.1.$52200989.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/52200989" class="newsround-promo__content newsround-promo__content--charcoal-purple" data-reactid=".47x0ykjrrm.1.9.0.1.$52200989.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.9.0.1.$52200989.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.9.0.1.$52200989.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/168D9/production/_111877329_coronavirusmasks.jpg" alt="coronavirus-masks." class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.9.0.1.$52200989.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.9.0.1.$52200989.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.9.0.1.$52200989.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.9.0.1.$52200989.0.0.1.0">Coronavirus: What's the latest advice about masks?</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.9.0.1.$52200989.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.9.0.1.$52200989.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.9.0.1.$52200989.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.9.0.1.$52200989.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.9.0.1.$52200989.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.9.0.1.$52200989.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.9.0.1.$52200989.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-12T06:22:34+00:00" data-datetime="12 May 2020" data-reactid=".47x0ykjrrm.1.9.0.1.$52200989.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.9.0.1.$52200989.0.0.1.2.0.0.1.0">12 May 2020</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.9.0.1.$52200989.0.0.1.2.0.0.1.1">12 May 2020</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".47x0ykjrrm.1.9.0.1.$52200989.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".47x0ykjrrm.1.9.0.1.$52200989.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.9.0.1.$52200989.0.0.1.2.1.0.0"><title data-reactid=".47x0ykjrrm.1.9.0.1.$52200989.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".47x0ykjrrm.1.9.0.1.$52200989.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".47x0ykjrrm.1.9.0.1.$52200989.0.0.1.2.1.1">124</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-2" data-reactid=".47x0ykjrrm.1.9.0.1.$52630243"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_2-3" data-reactid=".47x0ykjrrm.1.9.0.1.$52630243.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/52630243" class="newsround-promo__content newsround-promo__content--charcoal-purple" data-reactid=".47x0ykjrrm.1.9.0.1.$52630243.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.9.0.1.$52630243.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.9.0.1.$52630243.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/B84F/production/_112238174_mask.jpg" alt="facemasks." class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.9.0.1.$52630243.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.9.0.1.$52630243.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.9.0.1.$52630243.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.9.0.1.$52630243.0.0.1.0">How to make your own face covering</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.9.0.1.$52630243.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.9.0.1.$52630243.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.9.0.1.$52630243.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.9.0.1.$52630243.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.9.0.1.$52630243.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.9.0.1.$52630243.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.9.0.1.$52630243.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-22T16:53:34+00:00" data-datetime="22 May 2020" data-reactid=".47x0ykjrrm.1.9.0.1.$52630243.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.9.0.1.$52630243.0.0.1.2.0.0.1.0">22 May 2020</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.9.0.1.$52630243.0.0.1.2.0.0.1.1">22 May 2020</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".47x0ykjrrm.1.9.0.1.$52630243.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".47x0ykjrrm.1.9.0.1.$52630243.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.9.0.1.$52630243.0.0.1.2.1.0.0"><title data-reactid=".47x0ykjrrm.1.9.0.1.$52630243.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".47x0ykjrrm.1.9.0.1.$52630243.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".47x0ykjrrm.1.9.0.1.$52630243.0.0.1.2.1.1">72</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-2" data-reactid=".47x0ykjrrm.1.9.0.1.$52804397"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_2-4" data-reactid=".47x0ykjrrm.1.9.0.1.$52804397.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/52804397" class="newsround-promo__content newsround-promo__content--charcoal-purple" data-reactid=".47x0ykjrrm.1.9.0.1.$52804397.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.9.0.1.$52804397.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.9.0.1.$52804397.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/E7A1/production/_112479295_shutterstock1.jpg" alt="high-street." class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.9.0.1.$52804397.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.9.0.1.$52804397.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.9.0.1.$52804397.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.9.0.1.$52804397.0.0.1.0">Will shops be opening again soon?</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.9.0.1.$52804397.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.9.0.1.$52804397.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.9.0.1.$52804397.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.9.0.1.$52804397.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.9.0.1.$52804397.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.9.0.1.$52804397.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.9.0.1.$52804397.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-26T07:48:17+00:00" data-datetime="5 days ago" data-reactid=".47x0ykjrrm.1.9.0.1.$52804397.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.9.0.1.$52804397.0.0.1.2.0.0.1.0">5 days ago</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.9.0.1.$52804397.0.0.1.2.0.0.1.1">5 days ago</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".47x0ykjrrm.1.9.0.1.$52804397.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".47x0ykjrrm.1.9.0.1.$52804397.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.9.0.1.$52804397.0.0.1.2.1.0.0"><title data-reactid=".47x0ykjrrm.1.9.0.1.$52804397.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".47x0ykjrrm.1.9.0.1.$52804397.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".47x0ykjrrm.1.9.0.1.$52804397.0.0.1.2.1.1">40</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-2" data-reactid=".47x0ykjrrm.1.9.0.1.$52796502"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_2-5" data-reactid=".47x0ykjrrm.1.9.0.1.$52796502.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/52796502" class="newsround-promo__content newsround-promo__content--charcoal-purple" data-reactid=".47x0ykjrrm.1.9.0.1.$52796502.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.9.0.1.$52796502.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.9.0.1.$52796502.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/16371/production/_112439909_mediaitem112439907.jpg" alt="Dominic Cummings" class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.9.0.1.$52796502.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.9.0.1.$52796502.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.9.0.1.$52796502.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.9.0.1.$52796502.0.0.1.0">Who is Dominic Cummings and why is everyone talking about him?</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.9.0.1.$52796502.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.9.0.1.$52796502.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.9.0.1.$52796502.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.9.0.1.$52796502.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.9.0.1.$52796502.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.9.0.1.$52796502.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.9.0.1.$52796502.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-26T06:10:32+00:00" data-datetime="5 days ago" data-reactid=".47x0ykjrrm.1.9.0.1.$52796502.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.9.0.1.$52796502.0.0.1.2.0.0.1.0">5 days ago</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.9.0.1.$52796502.0.0.1.2.0.0.1.1">5 days ago</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".47x0ykjrrm.1.9.0.1.$52796502.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".47x0ykjrrm.1.9.0.1.$52796502.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.9.0.1.$52796502.0.0.1.2.1.0.0"><title data-reactid=".47x0ykjrrm.1.9.0.1.$52796502.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".47x0ykjrrm.1.9.0.1.$52796502.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".47x0ykjrrm.1.9.0.1.$52796502.0.0.1.2.1.1">141</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-2" data-reactid=".47x0ykjrrm.1.9.0.1.$52393241"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_2-6" data-reactid=".47x0ykjrrm.1.9.0.1.$52393241.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/52393241" class="newsround-promo__content newsround-promo__content--charcoal-purple" data-reactid=".47x0ykjrrm.1.9.0.1.$52393241.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.9.0.1.$52393241.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.9.0.1.$52393241.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/BCC8/production/_111882384_gettyimages-1134900343.jpg" alt="School-classroom-sits-empty." class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.9.0.1.$52393241.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.9.0.1.$52393241.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.9.0.1.$52393241.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.9.0.1.$52393241.0.0.1.0">What do we know about when schools will re-open?</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.9.0.1.$52393241.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.9.0.1.$52393241.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.9.0.1.$52393241.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.9.0.1.$52393241.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.9.0.1.$52393241.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.9.0.1.$52393241.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.9.0.1.$52393241.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-22T15:31:50+00:00" data-datetime="22 May 2020" data-reactid=".47x0ykjrrm.1.9.0.1.$52393241.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.9.0.1.$52393241.0.0.1.2.0.0.1.0">22 May 2020</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.9.0.1.$52393241.0.0.1.2.0.0.1.1">22 May 2020</span></time></span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-2" data-reactid=".47x0ykjrrm.1.9.0.1.$51887051"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_2-7" data-reactid=".47x0ykjrrm.1.9.0.1.$51887051.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/51887051" class="newsround-promo__content newsround-promo__content--charcoal-purple" data-reactid=".47x0ykjrrm.1.9.0.1.$51887051.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.9.0.1.$51887051.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.9.0.1.$51887051.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/12A89/production/_112352467_p08dkzt5.jpg" alt="Keyframe #9" class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.9.0.1.$51887051.0.0.0.0.0"/></div><span class="newsround-promo__promolabel newsround-promo__promolabel--charcoal-purple newsround-promo__promolabel--duration" data-reactid=".47x0ykjrrm.1.9.0.1.$51887051.0.0.0.1"><div class="gel-icon gel-icon--play newsround-promo__icon" data-reactid=".47x0ykjrrm.1.9.0.1.$51887051.0.0.0.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.9.0.1.$51887051.0.0.0.1.0.0"><title data-reactid=".47x0ykjrrm.1.9.0.1.$51887051.0.0.0.1.0.0.0">play</title><path d="M3 32l26-16L3 0v32z" data-reactid=".47x0ykjrrm.1.9.0.1.$51887051.0.0.0.1.0.0.1"></path></svg></div><span class="duration" data-reactid=".47x0ykjrrm.1.9.0.1.$51887051.0.0.0.1.1">1:49</span></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.9.0.1.$51887051.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.9.0.1.$51887051.0.0.1.0">Coronavirus: Advice if you're worried about it</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.9.0.1.$51887051.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.9.0.1.$51887051.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.9.0.1.$51887051.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.9.0.1.$51887051.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.9.0.1.$51887051.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.9.0.1.$51887051.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.9.0.1.$51887051.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-19T11:41:57+00:00" data-datetime="19 May 2020" data-reactid=".47x0ykjrrm.1.9.0.1.$51887051.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.9.0.1.$51887051.0.0.1.2.0.0.1.0">19 May 2020</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.9.0.1.$51887051.0.0.1.2.0.0.1.1">19 May 2020</span></time></span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-2" data-reactid=".47x0ykjrrm.1.9.0.1.$52506961"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_2-8" data-reactid=".47x0ykjrrm.1.9.0.1.$52506961.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/52506961" class="newsround-promo__content newsround-promo__content--charcoal-purple" data-reactid=".47x0ykjrrm.1.9.0.1.$52506961.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.9.0.1.$52506961.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.9.0.1.$52506961.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/13466/production/_112105987_gettyimages-982755994.jpg" alt="boy-sleeping" class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.9.0.1.$52506961.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.9.0.1.$52506961.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.9.0.1.$52506961.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.9.0.1.$52506961.0.0.1.0">Coronavirus having impact on children's sleep</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.9.0.1.$52506961.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.9.0.1.$52506961.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.9.0.1.$52506961.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.9.0.1.$52506961.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.9.0.1.$52506961.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.9.0.1.$52506961.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.9.0.1.$52506961.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-26T05:24:53+00:00" data-datetime="5 days ago" data-reactid=".47x0ykjrrm.1.9.0.1.$52506961.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.9.0.1.$52506961.0.0.1.2.0.0.1.0">5 days ago</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.9.0.1.$52506961.0.0.1.2.0.0.1.1">5 days ago</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".47x0ykjrrm.1.9.0.1.$52506961.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".47x0ykjrrm.1.9.0.1.$52506961.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.9.0.1.$52506961.0.0.1.2.1.0.0"><title data-reactid=".47x0ykjrrm.1.9.0.1.$52506961.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".47x0ykjrrm.1.9.0.1.$52506961.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".47x0ykjrrm.1.9.0.1.$52506961.0.0.1.2.1.1">131</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-2" data-reactid=".47x0ykjrrm.1.9.0.1.$52771968"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_2-9" data-reactid=".47x0ykjrrm.1.9.0.1.$52771968.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/52771968" class="newsround-promo__content newsround-promo__content--charcoal-purple" data-reactid=".47x0ykjrrm.1.9.0.1.$52771968.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.9.0.1.$52771968.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.9.0.1.$52771968.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/14AF1/production/_112412748_gettyimages-1212169322.jpg" alt="Child in classroom" class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.9.0.1.$52771968.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.9.0.1.$52771968.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.9.0.1.$52771968.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.9.0.1.$52771968.0.0.1.0">Government scientists publish advice on going back to school</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.9.0.1.$52771968.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.9.0.1.$52771968.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.9.0.1.$52771968.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.9.0.1.$52771968.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.9.0.1.$52771968.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.9.0.1.$52771968.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.9.0.1.$52771968.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-22T15:12:03+00:00" data-datetime="22 May 2020" data-reactid=".47x0ykjrrm.1.9.0.1.$52771968.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.9.0.1.$52771968.0.0.1.2.0.0.1.0">22 May 2020</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.9.0.1.$52771968.0.0.1.2.0.0.1.1">22 May 2020</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".47x0ykjrrm.1.9.0.1.$52771968.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".47x0ykjrrm.1.9.0.1.$52771968.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.9.0.1.$52771968.0.0.1.2.1.0.0"><title data-reactid=".47x0ykjrrm.1.9.0.1.$52771968.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".47x0ykjrrm.1.9.0.1.$52771968.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".47x0ykjrrm.1.9.0.1.$52771968.0.0.1.2.1.1">26</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-2" data-reactid=".47x0ykjrrm.1.9.0.1.$52680422"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_2-10" data-reactid=".47x0ykjrrm.1.9.0.1.$52680422.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/52680422" class="newsround-promo__content newsround-promo__content--charcoal-purple" data-reactid=".47x0ykjrrm.1.9.0.1.$52680422.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.9.0.1.$52680422.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.9.0.1.$52680422.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/056D/production/_112398310_mediaitem112398301.jpg" alt="Nicola-Sturgeon-speaking-at-Scottish-government." class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.9.0.1.$52680422.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.9.0.1.$52680422.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.9.0.1.$52680422.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.9.0.1.$52680422.0.0.1.0">Children in Scotland won't go back to school until August</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.9.0.1.$52680422.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.9.0.1.$52680422.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.9.0.1.$52680422.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.9.0.1.$52680422.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.9.0.1.$52680422.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.9.0.1.$52680422.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.9.0.1.$52680422.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-21T14:01:14+00:00" data-datetime="21 May 2020" data-reactid=".47x0ykjrrm.1.9.0.1.$52680422.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.9.0.1.$52680422.0.0.1.2.0.0.1.0">21 May 2020</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.9.0.1.$52680422.0.0.1.2.0.0.1.1">21 May 2020</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".47x0ykjrrm.1.9.0.1.$52680422.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".47x0ykjrrm.1.9.0.1.$52680422.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.9.0.1.$52680422.0.0.1.2.1.0.0"><title data-reactid=".47x0ykjrrm.1.9.0.1.$52680422.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".47x0ykjrrm.1.9.0.1.$52680422.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".47x0ykjrrm.1.9.0.1.$52680422.0.0.1.2.1.1">34</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-2" data-reactid=".47x0ykjrrm.1.9.0.1.$52653333"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_2-11" data-reactid=".47x0ykjrrm.1.9.0.1.$52653333.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/52653333" class="newsround-promo__content newsround-promo__content--charcoal-purple" data-reactid=".47x0ykjrrm.1.9.0.1.$52653333.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.9.0.1.$52653333.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.9.0.1.$52653333.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/10F50/production/_112265496_p08d2l8v.jpg" alt="Keyframe #5" class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.9.0.1.$52653333.0.0.0.0.0"/></div><span class="newsround-promo__promolabel newsround-promo__promolabel--charcoal-purple newsround-promo__promolabel--duration" data-reactid=".47x0ykjrrm.1.9.0.1.$52653333.0.0.0.1"><div class="gel-icon gel-icon--play newsround-promo__icon" data-reactid=".47x0ykjrrm.1.9.0.1.$52653333.0.0.0.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.9.0.1.$52653333.0.0.0.1.0.0"><title data-reactid=".47x0ykjrrm.1.9.0.1.$52653333.0.0.0.1.0.0.0">play</title><path d="M3 32l26-16L3 0v32z" data-reactid=".47x0ykjrrm.1.9.0.1.$52653333.0.0.0.1.0.0.1"></path></svg></div><span class="duration" data-reactid=".47x0ykjrrm.1.9.0.1.$52653333.0.0.0.1.1">2:00</span></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.9.0.1.$52653333.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.9.0.1.$52653333.0.0.1.0">What's it like going back to school after lockdown?</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.9.0.1.$52653333.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.9.0.1.$52653333.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.9.0.1.$52653333.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.9.0.1.$52653333.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.9.0.1.$52653333.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.9.0.1.$52653333.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.9.0.1.$52653333.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-14T05:39:38+00:00" data-datetime="14 May 2020" data-reactid=".47x0ykjrrm.1.9.0.1.$52653333.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.9.0.1.$52653333.0.0.1.2.0.0.1.0">14 May 2020</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.9.0.1.$52653333.0.0.1.2.0.0.1.1">14 May 2020</span></time></span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-2" data-reactid=".47x0ykjrrm.1.9.0.1.$52735223"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_2-12" data-reactid=".47x0ykjrrm.1.9.0.1.$52735223.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/52735223" class="newsround-promo__content newsround-promo__content--charcoal-purple" data-reactid=".47x0ykjrrm.1.9.0.1.$52735223.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.9.0.1.$52735223.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.9.0.1.$52735223.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/A18D/production/_112375314_fe9f617b-f0bb-4a4c-9211-ba103301457e.jpg" alt="Handwashing" class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.9.0.1.$52735223.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.9.0.1.$52735223.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.9.0.1.$52735223.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.9.0.1.$52735223.0.0.1.0">Experts: 'Wash your hands at least SIX times a day'</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.9.0.1.$52735223.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.9.0.1.$52735223.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.9.0.1.$52735223.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.9.0.1.$52735223.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.9.0.1.$52735223.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.9.0.1.$52735223.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.9.0.1.$52735223.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-20T08:53:12+00:00" data-datetime="20 May 2020" data-reactid=".47x0ykjrrm.1.9.0.1.$52735223.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.9.0.1.$52735223.0.0.1.2.0.0.1.0">20 May 2020</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.9.0.1.$52735223.0.0.1.2.0.0.1.1">20 May 2020</span></time></span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-2" data-reactid=".47x0ykjrrm.1.9.0.1.$52663704"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_2-13" data-reactid=".47x0ykjrrm.1.9.0.1.$52663704.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/52663704" class="newsround-promo__content newsround-promo__content--charcoal-purple" data-reactid=".47x0ykjrrm.1.9.0.1.$52663704.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.9.0.1.$52663704.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.9.0.1.$52663704.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/AABB/production/_112270734_gettyimages-1164902889.jpg" alt="Schoolbag" class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.9.0.1.$52663704.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.9.0.1.$52663704.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.9.0.1.$52663704.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.9.0.1.$52663704.0.0.1.0">Vote: How do YOU feel about going back to school?</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.9.0.1.$52663704.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.9.0.1.$52663704.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.9.0.1.$52663704.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.9.0.1.$52663704.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.9.0.1.$52663704.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.9.0.1.$52663704.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.9.0.1.$52663704.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-16T08:21:25+00:00" data-datetime="16 May 2020" data-reactid=".47x0ykjrrm.1.9.0.1.$52663704.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.9.0.1.$52663704.0.0.1.2.0.0.1.0">16 May 2020</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.9.0.1.$52663704.0.0.1.2.0.0.1.1">16 May 2020</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".47x0ykjrrm.1.9.0.1.$52663704.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".47x0ykjrrm.1.9.0.1.$52663704.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.9.0.1.$52663704.0.0.1.2.1.0.0"><title data-reactid=".47x0ykjrrm.1.9.0.1.$52663704.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".47x0ykjrrm.1.9.0.1.$52663704.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".47x0ykjrrm.1.9.0.1.$52663704.0.0.1.2.1.1">246</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-2" data-reactid=".47x0ykjrrm.1.9.0.1.$52676231"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_2-14" data-reactid=".47x0ykjrrm.1.9.0.1.$52676231.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/52676231" class="newsround-promo__content newsround-promo__content--charcoal-purple" data-reactid=".47x0ykjrrm.1.9.0.1.$52676231.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.9.0.1.$52676231.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.9.0.1.$52676231.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/3D78/production/_112163751_teachersjpg.jpg" alt="kids-look-at-computer-teacher." class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.9.0.1.$52676231.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.9.0.1.$52676231.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.9.0.1.$52676231.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.9.0.1.$52676231.0.0.1.0">Send in: We want your questions about school for the man in charge of them</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.9.0.1.$52676231.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.9.0.1.$52676231.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.9.0.1.$52676231.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.9.0.1.$52676231.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.9.0.1.$52676231.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.9.0.1.$52676231.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.9.0.1.$52676231.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-18T05:16:54+00:00" data-datetime="18 May 2020" data-reactid=".47x0ykjrrm.1.9.0.1.$52676231.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.9.0.1.$52676231.0.0.1.2.0.0.1.0">18 May 2020</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.9.0.1.$52676231.0.0.1.2.0.0.1.1">18 May 2020</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".47x0ykjrrm.1.9.0.1.$52676231.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".47x0ykjrrm.1.9.0.1.$52676231.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.9.0.1.$52676231.0.0.1.2.1.0.0"><title data-reactid=".47x0ykjrrm.1.9.0.1.$52676231.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".47x0ykjrrm.1.9.0.1.$52676231.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".47x0ykjrrm.1.9.0.1.$52676231.0.0.1.2.1.1">215</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-2" data-reactid=".47x0ykjrrm.1.9.0.1.$52131937"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_2-15" data-reactid=".47x0ykjrrm.1.9.0.1.$52131937.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/52131937" class="newsround-promo__content newsround-promo__content--charcoal-purple" data-reactid=".47x0ykjrrm.1.9.0.1.$52131937.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.9.0.1.$52131937.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.9.0.1.$52131937.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/4877/production/_111515581_gettyimages-1208595556.jpg" alt="woman-lab-testing." class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.9.0.1.$52131937.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.9.0.1.$52131937.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.9.0.1.$52131937.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.9.0.1.$52131937.0.0.1.0">What's happening with coronavirus testing?</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.9.0.1.$52131937.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.9.0.1.$52131937.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.9.0.1.$52131937.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.9.0.1.$52131937.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.9.0.1.$52131937.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.9.0.1.$52131937.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.9.0.1.$52131937.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-18T14:59:34+00:00" data-datetime="18 May 2020" data-reactid=".47x0ykjrrm.1.9.0.1.$52131937.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.9.0.1.$52131937.0.0.1.2.0.0.1.0">18 May 2020</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.9.0.1.$52131937.0.0.1.2.0.0.1.1">18 May 2020</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".47x0ykjrrm.1.9.0.1.$52131937.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".47x0ykjrrm.1.9.0.1.$52131937.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.9.0.1.$52131937.0.0.1.2.1.0.0"><title data-reactid=".47x0ykjrrm.1.9.0.1.$52131937.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".47x0ykjrrm.1.9.0.1.$52131937.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".47x0ykjrrm.1.9.0.1.$52131937.0.0.1.2.1.1">9</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-2" data-reactid=".47x0ykjrrm.1.9.0.1.$51312911"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_2-16" data-reactid=".47x0ykjrrm.1.9.0.1.$51312911.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/51312911" class="newsround-promo__content newsround-promo__content--charcoal-purple" data-reactid=".47x0ykjrrm.1.9.0.1.$51312911.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.9.0.1.$51312911.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.9.0.1.$51312911.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/494F/production/_111976781_mediaitem111976780.jpg" alt="A small bottle labeled with a "Vaccine" sticker is held near a medical syringe" class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.9.0.1.$51312911.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.9.0.1.$51312911.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.9.0.1.$51312911.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.9.0.1.$51312911.0.0.1.0">Coronavirus: How do vaccines work?</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.9.0.1.$51312911.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.9.0.1.$51312911.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.9.0.1.$51312911.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.9.0.1.$51312911.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.9.0.1.$51312911.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.9.0.1.$51312911.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.9.0.1.$51312911.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-05T06:40:41+00:00" data-datetime="5 May 2020" data-reactid=".47x0ykjrrm.1.9.0.1.$51312911.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.9.0.1.$51312911.0.0.1.2.0.0.1.0">5 May 2020</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.9.0.1.$51312911.0.0.1.2.0.0.1.1">5 May 2020</span></time></span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-2" data-reactid=".47x0ykjrrm.1.9.0.1.$52648129"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_2-17" data-reactid=".47x0ykjrrm.1.9.0.1.$52648129.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/52648129" class="newsround-promo__content newsround-promo__content--charcoal-purple" data-reactid=".47x0ykjrrm.1.9.0.1.$52648129.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.9.0.1.$52648129.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.9.0.1.$52648129.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/A184/production/_112284314_mentalhealthlockdownindex.jpg" alt="girl-looking-stressed-stay-home-keep-distance-dont-panic" class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.9.0.1.$52648129.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.9.0.1.$52648129.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.9.0.1.$52648129.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.9.0.1.$52648129.0.0.1.0">Mental health in lockdown: How have you been affected?</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.9.0.1.$52648129.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.9.0.1.$52648129.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.9.0.1.$52648129.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.9.0.1.$52648129.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.9.0.1.$52648129.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.9.0.1.$52648129.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.9.0.1.$52648129.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-15T08:41:11+00:00" data-datetime="15 May 2020" data-reactid=".47x0ykjrrm.1.9.0.1.$52648129.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.9.0.1.$52648129.0.0.1.2.0.0.1.0">15 May 2020</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.9.0.1.$52648129.0.0.1.2.0.0.1.1">15 May 2020</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".47x0ykjrrm.1.9.0.1.$52648129.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".47x0ykjrrm.1.9.0.1.$52648129.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.9.0.1.$52648129.0.0.1.2.1.0.0"><title data-reactid=".47x0ykjrrm.1.9.0.1.$52648129.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".47x0ykjrrm.1.9.0.1.$52648129.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".47x0ykjrrm.1.9.0.1.$52648129.0.0.1.2.1.1">10</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-2" data-reactid=".47x0ykjrrm.1.9.0.1.$52351553"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_2-18" data-reactid=".47x0ykjrrm.1.9.0.1.$52351553.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/52351553" class="newsround-promo__content newsround-promo__content--charcoal-purple" data-reactid=".47x0ykjrrm.1.9.0.1.$52351553.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.9.0.1.$52351553.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.9.0.1.$52351553.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/2BC7/production/_111870211_supersix.jpg" alt="Composite-of-6-dogs." class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.9.0.1.$52351553.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.9.0.1.$52351553.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.9.0.1.$52351553.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.9.0.1.$52351553.0.0.1.0">Could dogs be used to test people for coronavirus?</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.9.0.1.$52351553.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.9.0.1.$52351553.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.9.0.1.$52351553.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.9.0.1.$52351553.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.9.0.1.$52351553.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.9.0.1.$52351553.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.9.0.1.$52351553.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-16T08:41:17+00:00" data-datetime="16 May 2020" data-reactid=".47x0ykjrrm.1.9.0.1.$52351553.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.9.0.1.$52351553.0.0.1.2.0.0.1.0">16 May 2020</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.9.0.1.$52351553.0.0.1.2.0.0.1.1">16 May 2020</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".47x0ykjrrm.1.9.0.1.$52351553.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".47x0ykjrrm.1.9.0.1.$52351553.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.9.0.1.$52351553.0.0.1.2.1.0.0"><title data-reactid=".47x0ykjrrm.1.9.0.1.$52351553.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".47x0ykjrrm.1.9.0.1.$52351553.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".47x0ykjrrm.1.9.0.1.$52351553.0.0.1.2.1.1">17</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-2" data-reactid=".47x0ykjrrm.1.9.0.1.$52227592"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_2-19" data-reactid=".47x0ykjrrm.1.9.0.1.$52227592.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/52227592" class="newsround-promo__content newsround-promo__content--charcoal-purple" data-reactid=".47x0ykjrrm.1.9.0.1.$52227592.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.9.0.1.$52227592.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.9.0.1.$52227592.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/10E3D/production/_111718196_p0892v48.jpg" alt="Child-in-kitchen." class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.9.0.1.$52227592.0.0.0.0.0"/></div><span class="newsround-promo__promolabel newsround-promo__promolabel--charcoal-purple newsround-promo__promolabel--duration" data-reactid=".47x0ykjrrm.1.9.0.1.$52227592.0.0.0.1"><div class="gel-icon gel-icon--play newsround-promo__icon" data-reactid=".47x0ykjrrm.1.9.0.1.$52227592.0.0.0.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.9.0.1.$52227592.0.0.0.1.0.0"><title data-reactid=".47x0ykjrrm.1.9.0.1.$52227592.0.0.0.1.0.0.0">play</title><path d="M3 32l26-16L3 0v32z" data-reactid=".47x0ykjrrm.1.9.0.1.$52227592.0.0.0.1.0.0.1"></path></svg></div><span class="duration" data-reactid=".47x0ykjrrm.1.9.0.1.$52227592.0.0.0.1.1">1:04</span></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.9.0.1.$52227592.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.9.0.1.$52227592.0.0.1.0">100 activity ideas you can do indoors during lockdown</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.9.0.1.$52227592.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.9.0.1.$52227592.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.9.0.1.$52227592.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.9.0.1.$52227592.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.9.0.1.$52227592.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.9.0.1.$52227592.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.9.0.1.$52227592.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-04-12T10:44:19+00:00" data-datetime="12 Apr 2020" data-reactid=".47x0ykjrrm.1.9.0.1.$52227592.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.9.0.1.$52227592.0.0.1.2.0.0.1.0">12 Apr 2020</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.9.0.1.$52227592.0.0.1.2.0.0.1.1">12 April 2020</span></time></span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-2" data-reactid=".47x0ykjrrm.1.9.0.1.$52658861"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_2-20" data-reactid=".47x0ykjrrm.1.9.0.1.$52658861.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/52658861" class="newsround-promo__content newsround-promo__content--charcoal-purple" data-reactid=".47x0ykjrrm.1.9.0.1.$52658861.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.9.0.1.$52658861.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.9.0.1.$52658861.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/7112/production/_112264982_de30.jpg" alt="coronavirus-asthma-inhaler." class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.9.0.1.$52658861.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.9.0.1.$52658861.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.9.0.1.$52658861.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.9.0.1.$52658861.0.0.1.0">Coronavirus and asthma: Your questions answered</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.9.0.1.$52658861.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.9.0.1.$52658861.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.9.0.1.$52658861.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.9.0.1.$52658861.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.9.0.1.$52658861.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.9.0.1.$52658861.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.9.0.1.$52658861.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-14T11:20:15+00:00" data-datetime="14 May 2020" data-reactid=".47x0ykjrrm.1.9.0.1.$52658861.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.9.0.1.$52658861.0.0.1.2.0.0.1.0">14 May 2020</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.9.0.1.$52658861.0.0.1.2.0.0.1.1">14 May 2020</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".47x0ykjrrm.1.9.0.1.$52658861.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".47x0ykjrrm.1.9.0.1.$52658861.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.9.0.1.$52658861.0.0.1.2.1.0.0"><title data-reactid=".47x0ykjrrm.1.9.0.1.$52658861.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".47x0ykjrrm.1.9.0.1.$52658861.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".47x0ykjrrm.1.9.0.1.$52658861.0.0.1.2.1.1">19</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-2" data-reactid=".47x0ykjrrm.1.9.0.1.$51877454"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_2-21" data-reactid=".47x0ykjrrm.1.9.0.1.$51877454.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/51877454" class="newsround-promo__content newsround-promo__content--charcoal-purple" data-reactid=".47x0ykjrrm.1.9.0.1.$51877454.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.9.0.1.$51877454.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.9.0.1.$51877454.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/12FCB/production/_111717777_3_nrcor_tom7.jpg" alt="coronavirus" class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.9.0.1.$51877454.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.9.0.1.$51877454.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.9.0.1.$51877454.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.9.0.1.$51877454.0.0.1.0">Frequently asked questions about coronavirus</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.9.0.1.$51877454.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.9.0.1.$51877454.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.9.0.1.$51877454.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.9.0.1.$51877454.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.9.0.1.$51877454.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.9.0.1.$51877454.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.9.0.1.$51877454.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-18T10:33:41+00:00" data-datetime="18 May 2020" data-reactid=".47x0ykjrrm.1.9.0.1.$51877454.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.9.0.1.$51877454.0.0.1.2.0.0.1.0">18 May 2020</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.9.0.1.$51877454.0.0.1.2.0.0.1.1">18 May 2020</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".47x0ykjrrm.1.9.0.1.$51877454.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".47x0ykjrrm.1.9.0.1.$51877454.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.9.0.1.$51877454.0.0.1.2.1.0.0"><title data-reactid=".47x0ykjrrm.1.9.0.1.$51877454.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".47x0ykjrrm.1.9.0.1.$51877454.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".47x0ykjrrm.1.9.0.1.$51877454.0.0.1.2.1.1">48</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-2" data-reactid=".47x0ykjrrm.1.9.0.1.$52538074"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_2-22" data-reactid=".47x0ykjrrm.1.9.0.1.$52538074.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/52538074" class="newsround-promo__content newsround-promo__content--charcoal-purple" data-reactid=".47x0ykjrrm.1.9.0.1.$52538074.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.9.0.1.$52538074.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.9.0.1.$52538074.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/B735/production/_112110964_p08c7fxt.jpg" alt="dr-xand." class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.9.0.1.$52538074.0.0.0.0.0"/></div><span class="newsround-promo__promolabel newsround-promo__promolabel--charcoal-purple newsround-promo__promolabel--duration" data-reactid=".47x0ykjrrm.1.9.0.1.$52538074.0.0.0.1"><div class="gel-icon gel-icon--play newsround-promo__icon" data-reactid=".47x0ykjrrm.1.9.0.1.$52538074.0.0.0.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.9.0.1.$52538074.0.0.0.1.0.0"><title data-reactid=".47x0ykjrrm.1.9.0.1.$52538074.0.0.0.1.0.0.0">play</title><path d="M3 32l26-16L3 0v32z" data-reactid=".47x0ykjrrm.1.9.0.1.$52538074.0.0.0.1.0.0.1"></path></svg></div><span class="duration" data-reactid=".47x0ykjrrm.1.9.0.1.$52538074.0.0.0.1.1">1:57</span></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.9.0.1.$52538074.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.9.0.1.$52538074.0.0.1.0">Watch Dr Xand鈥檚 coronavirus video diary</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.9.0.1.$52538074.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.9.0.1.$52538074.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.9.0.1.$52538074.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.9.0.1.$52538074.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.9.0.1.$52538074.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.9.0.1.$52538074.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.9.0.1.$52538074.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-05T06:48:01+00:00" data-datetime="5 May 2020" data-reactid=".47x0ykjrrm.1.9.0.1.$52538074.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.9.0.1.$52538074.0.0.1.2.0.0.1.0">5 May 2020</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.9.0.1.$52538074.0.0.1.2.0.0.1.1">5 May 2020</span></time></span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-2" data-reactid=".47x0ykjrrm.1.9.0.1.$52300064"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_2-23" data-reactid=".47x0ykjrrm.1.9.0.1.$52300064.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/52300064" class="newsround-promo__content newsround-promo__content--charcoal-purple" data-reactid=".47x0ykjrrm.1.9.0.1.$52300064.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.9.0.1.$52300064.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.9.0.1.$52300064.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/5782/production/_111820422_nrkeykids1.jpg" alt="key-worker-graphic" class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.9.0.1.$52300064.0.0.0.0.0"/></div><span class="newsround-promo__promolabel newsround-promo__promolabel--charcoal-purple newsround-promo__promolabel--duration" data-reactid=".47x0ykjrrm.1.9.0.1.$52300064.0.0.0.1"><div class="gel-icon gel-icon--play newsround-promo__icon" data-reactid=".47x0ykjrrm.1.9.0.1.$52300064.0.0.0.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.9.0.1.$52300064.0.0.0.1.0.0"><title data-reactid=".47x0ykjrrm.1.9.0.1.$52300064.0.0.0.1.0.0.0">play</title><path d="M3 32l26-16L3 0v32z" data-reactid=".47x0ykjrrm.1.9.0.1.$52300064.0.0.0.1.0.0.1"></path></svg></div><span class="duration" data-reactid=".47x0ykjrrm.1.9.0.1.$52300064.0.0.0.1.1">1:43</span></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.9.0.1.$52300064.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.9.0.1.$52300064.0.0.1.0">Coronavirus: The key workers' children still at school</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.9.0.1.$52300064.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.9.0.1.$52300064.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.9.0.1.$52300064.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.9.0.1.$52300064.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.9.0.1.$52300064.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.9.0.1.$52300064.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.9.0.1.$52300064.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-04-22T05:43:08+00:00" data-datetime="22 Apr 2020" data-reactid=".47x0ykjrrm.1.9.0.1.$52300064.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.9.0.1.$52300064.0.0.1.2.0.0.1.0">22 Apr 2020</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.9.0.1.$52300064.0.0.1.2.0.0.1.1">22 April 2020</span></time></span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-2" data-reactid=".47x0ykjrrm.1.9.0.1.$52280887"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_2-24" data-reactid=".47x0ykjrrm.1.9.0.1.$52280887.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/52280887" class="newsround-promo__content newsround-promo__content--charcoal-purple" data-reactid=".47x0ykjrrm.1.9.0.1.$52280887.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.9.0.1.$52280887.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.9.0.1.$52280887.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/22CC/production/_111780980_gettyimages-1208003898.jpg" alt="mask-gloves-hospital." class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.9.0.1.$52280887.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.9.0.1.$52280887.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.9.0.1.$52280887.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.9.0.1.$52280887.0.0.1.0">What is PPE & why is it in the news?</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.9.0.1.$52280887.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.9.0.1.$52280887.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.9.0.1.$52280887.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.9.0.1.$52280887.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.9.0.1.$52280887.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.9.0.1.$52280887.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.9.0.1.$52280887.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-04-18T09:15:53+00:00" data-datetime="18 Apr 2020" data-reactid=".47x0ykjrrm.1.9.0.1.$52280887.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.9.0.1.$52280887.0.0.1.2.0.0.1.0">18 Apr 2020</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.9.0.1.$52280887.0.0.1.2.0.0.1.1">18 April 2020</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".47x0ykjrrm.1.9.0.1.$52280887.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".47x0ykjrrm.1.9.0.1.$52280887.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.9.0.1.$52280887.0.0.1.2.1.0.0"><title data-reactid=".47x0ykjrrm.1.9.0.1.$52280887.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".47x0ykjrrm.1.9.0.1.$52280887.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".47x0ykjrrm.1.9.0.1.$52280887.0.0.1.2.1.1">13</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-2" data-reactid=".47x0ykjrrm.1.9.0.1.$52357183"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_2-25" data-reactid=".47x0ykjrrm.1.9.0.1.$52357183.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/52357183" class="newsround-promo__content newsround-promo__content--charcoal-purple" data-reactid=".47x0ykjrrm.1.9.0.1.$52357183.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.9.0.1.$52357183.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.9.0.1.$52357183.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/158FD/production/_111871388_p08b29ym.jpg" alt="dr ranj" class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.9.0.1.$52357183.0.0.0.0.0"/></div><span class="newsround-promo__promolabel newsround-promo__promolabel--charcoal-purple newsround-promo__promolabel--duration" data-reactid=".47x0ykjrrm.1.9.0.1.$52357183.0.0.0.1"><div class="gel-icon gel-icon--play newsround-promo__icon" data-reactid=".47x0ykjrrm.1.9.0.1.$52357183.0.0.0.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.9.0.1.$52357183.0.0.0.1.0.0"><title data-reactid=".47x0ykjrrm.1.9.0.1.$52357183.0.0.0.1.0.0.0">play</title><path d="M3 32l26-16L3 0v32z" data-reactid=".47x0ykjrrm.1.9.0.1.$52357183.0.0.0.1.0.0.1"></path></svg></div><span class="duration" data-reactid=".47x0ykjrrm.1.9.0.1.$52357183.0.0.0.1.1">2:30</span></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.9.0.1.$52357183.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.9.0.1.$52357183.0.0.1.0">Dr Ranj answers kids' questions about coronavirus</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.9.0.1.$52357183.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.9.0.1.$52357183.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.9.0.1.$52357183.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.9.0.1.$52357183.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.9.0.1.$52357183.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.9.0.1.$52357183.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.9.0.1.$52357183.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-20T06:44:01+00:00" data-datetime="20 May 2020" data-reactid=".47x0ykjrrm.1.9.0.1.$52357183.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.9.0.1.$52357183.0.0.1.2.0.0.1.0">20 May 2020</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.9.0.1.$52357183.0.0.1.2.0.0.1.1">20 May 2020</span></time></span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-2" data-reactid=".47x0ykjrrm.1.9.0.1.$52314760"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_2-26" data-reactid=".47x0ykjrrm.1.9.0.1.$52314760.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/52314760" class="newsround-promo__content newsround-promo__content--charcoal-purple" data-reactid=".47x0ykjrrm.1.9.0.1.$52314760.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.9.0.1.$52314760.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.9.0.1.$52314760.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/2079/production/_111831380_p089r79z.jpg" alt="paul-and-freddy." class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.9.0.1.$52314760.0.0.0.0.0"/></div><span class="newsround-promo__promolabel newsround-promo__promolabel--charcoal-purple newsround-promo__promolabel--duration" data-reactid=".47x0ykjrrm.1.9.0.1.$52314760.0.0.0.1"><div class="gel-icon gel-icon--play newsround-promo__icon" data-reactid=".47x0ykjrrm.1.9.0.1.$52314760.0.0.0.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.9.0.1.$52314760.0.0.0.1.0.0"><title data-reactid=".47x0ykjrrm.1.9.0.1.$52314760.0.0.0.1.0.0.0">play</title><path d="M3 32l26-16L3 0v32z" data-reactid=".47x0ykjrrm.1.9.0.1.$52314760.0.0.0.1.0.0.1"></path></svg></div><span class="duration" data-reactid=".47x0ykjrrm.1.9.0.1.$52314760.0.0.0.1.1">1:14</span></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.9.0.1.$52314760.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.9.0.1.$52314760.0.0.1.0">Paul & Freddy's mental health top tips</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.9.0.1.$52314760.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.9.0.1.$52314760.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.9.0.1.$52314760.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.9.0.1.$52314760.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.9.0.1.$52314760.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.9.0.1.$52314760.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.9.0.1.$52314760.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-04-17T08:44:00+00:00" data-datetime="17 Apr 2020" data-reactid=".47x0ykjrrm.1.9.0.1.$52314760.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.9.0.1.$52314760.0.0.1.2.0.0.1.0">17 Apr 2020</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.9.0.1.$52314760.0.0.1.2.0.0.1.1">17 April 2020</span></time></span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-2" data-reactid=".47x0ykjrrm.1.9.0.1.$52214311"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_2-27" data-reactid=".47x0ykjrrm.1.9.0.1.$52214311.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/52214311" class="newsround-promo__content newsround-promo__content--charcoal-purple" data-reactid=".47x0ykjrrm.1.9.0.1.$52214311.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.9.0.1.$52214311.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.9.0.1.$52214311.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/990D/production/_111718193_p0892rv3.jpg" alt="Keyframe #1" class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.9.0.1.$52214311.0.0.0.0.0"/></div><span class="newsround-promo__promolabel newsround-promo__promolabel--charcoal-purple newsround-promo__promolabel--duration" data-reactid=".47x0ykjrrm.1.9.0.1.$52214311.0.0.0.1"><div class="gel-icon gel-icon--play newsround-promo__icon" data-reactid=".47x0ykjrrm.1.9.0.1.$52214311.0.0.0.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.9.0.1.$52214311.0.0.0.1.0.0"><title data-reactid=".47x0ykjrrm.1.9.0.1.$52214311.0.0.0.1.0.0.0">play</title><path d="M3 32l26-16L3 0v32z" data-reactid=".47x0ykjrrm.1.9.0.1.$52214311.0.0.0.1.0.0.1"></path></svg></div><span class="duration" data-reactid=".47x0ykjrrm.1.9.0.1.$52214311.0.0.0.1.1">1:48</span></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.9.0.1.$52214311.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.9.0.1.$52214311.0.0.1.0">Worship during the Coronavirus</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.9.0.1.$52214311.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.9.0.1.$52214311.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.9.0.1.$52214311.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.9.0.1.$52214311.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.9.0.1.$52214311.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.9.0.1.$52214311.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.9.0.1.$52214311.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-04-14T06:07:49+00:00" data-datetime="14 Apr 2020" data-reactid=".47x0ykjrrm.1.9.0.1.$52214311.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.9.0.1.$52214311.0.0.1.2.0.0.1.0">14 Apr 2020</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.9.0.1.$52214311.0.0.1.2.0.0.1.1">14 April 2020</span></time></span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-2" data-reactid=".47x0ykjrrm.1.9.0.1.$52096366"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_2-28" data-reactid=".47x0ykjrrm.1.9.0.1.$52096366.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/52096366" class="newsround-promo__content newsround-promo__content--charcoal-purple" data-reactid=".47x0ykjrrm.1.9.0.1.$52096366.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.9.0.1.$52096366.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.9.0.1.$52096366.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/ADD9/production/_111550544_gettyimages-1195910993.jpg" alt="hand-holding-a-phone-with-fake-news-on-the-screen-other-hand-about-to-press-share-on-the-screen" class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.9.0.1.$52096366.0.0.0.0.0"/></div><span class="newsround-promo__promolabel newsround-promo__promolabel--charcoal-purple newsround-promo__promolabel--duration" data-reactid=".47x0ykjrrm.1.9.0.1.$52096366.0.0.0.1"><div class="gel-icon gel-icon--play newsround-promo__icon" data-reactid=".47x0ykjrrm.1.9.0.1.$52096366.0.0.0.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.9.0.1.$52096366.0.0.0.1.0.0"><title data-reactid=".47x0ykjrrm.1.9.0.1.$52096366.0.0.0.1.0.0.0">play</title><path d="M3 32l26-16L3 0v32z" data-reactid=".47x0ykjrrm.1.9.0.1.$52096366.0.0.0.1.0.0.1"></path></svg></div><span class="duration" data-reactid=".47x0ykjrrm.1.9.0.1.$52096366.0.0.0.1.1">2:00</span></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.9.0.1.$52096366.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.9.0.1.$52096366.0.0.1.0">How to spot fake virus news</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.9.0.1.$52096366.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.9.0.1.$52096366.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.9.0.1.$52096366.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.9.0.1.$52096366.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.9.0.1.$52096366.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.9.0.1.$52096366.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.9.0.1.$52096366.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-04-03T08:03:29+00:00" data-datetime="3 Apr 2020" data-reactid=".47x0ykjrrm.1.9.0.1.$52096366.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.9.0.1.$52096366.0.0.1.2.0.0.1.0">3 Apr 2020</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.9.0.1.$52096366.0.0.1.2.0.0.1.1">3 April 2020</span></time></span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-2" data-reactid=".47x0ykjrrm.1.9.0.1.$52156671"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_2-29" data-reactid=".47x0ykjrrm.1.9.0.1.$52156671.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/52156671" class="newsround-promo__content newsround-promo__content--charcoal-purple" data-reactid=".47x0ykjrrm.1.9.0.1.$52156671.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.9.0.1.$52156671.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.9.0.1.$52156671.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/A64A/production/_111607524_gettyimages-619269222.jpg" alt="child-on-phone." class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.9.0.1.$52156671.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.9.0.1.$52156671.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.9.0.1.$52156671.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.9.0.1.$52156671.0.0.1.0">Worried about coronavirus? The BBC Own It app can help</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.9.0.1.$52156671.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.9.0.1.$52156671.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.9.0.1.$52156671.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.9.0.1.$52156671.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.9.0.1.$52156671.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.9.0.1.$52156671.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.9.0.1.$52156671.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-04-03T14:46:21+00:00" data-datetime="3 Apr 2020" data-reactid=".47x0ykjrrm.1.9.0.1.$52156671.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.9.0.1.$52156671.0.0.1.2.0.0.1.0">3 Apr 2020</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.9.0.1.$52156671.0.0.1.2.0.0.1.1">3 April 2020</span></time></span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-2" data-reactid=".47x0ykjrrm.1.9.0.1.$52018134"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_2-30" data-reactid=".47x0ykjrrm.1.9.0.1.$52018134.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/52018134" class="newsround-promo__content newsround-promo__content--charcoal-purple" data-reactid=".47x0ykjrrm.1.9.0.1.$52018134.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.9.0.1.$52018134.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.9.0.1.$52018134.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/117D8/production/_111404617_title_-still_00078.png" alt="title-card" class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.9.0.1.$52018134.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.9.0.1.$52018134.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.9.0.1.$52018134.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.9.0.1.$52018134.0.0.1.0">How to BOSS being stuck at home!</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.9.0.1.$52018134.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.9.0.1.$52018134.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.9.0.1.$52018134.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.9.0.1.$52018134.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.9.0.1.$52018134.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.9.0.1.$52018134.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.9.0.1.$52018134.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-03-25T06:28:57+00:00" data-datetime="25 Mar 2020" data-reactid=".47x0ykjrrm.1.9.0.1.$52018134.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.9.0.1.$52018134.0.0.1.2.0.0.1.0">25 Mar 2020</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.9.0.1.$52018134.0.0.1.2.0.0.1.1">25 March 2020</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".47x0ykjrrm.1.9.0.1.$52018134.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".47x0ykjrrm.1.9.0.1.$52018134.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.9.0.1.$52018134.0.0.1.2.1.0.0"><title data-reactid=".47x0ykjrrm.1.9.0.1.$52018134.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".47x0ykjrrm.1.9.0.1.$52018134.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".47x0ykjrrm.1.9.0.1.$52018134.0.0.1.2.1.1">58</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-2" data-reactid=".47x0ykjrrm.1.9.0.1.$51989370"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_2-31" data-reactid=".47x0ykjrrm.1.9.0.1.$51989370.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/51989370" class="newsround-promo__content newsround-promo__content--charcoal-purple" data-reactid=".47x0ykjrrm.1.9.0.1.$51989370.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.9.0.1.$51989370.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.9.0.1.$51989370.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/108EA/production/_111381876_p0878y4y.jpg" alt="Domino" class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.9.0.1.$51989370.0.0.0.0.0"/></div><span class="newsround-promo__promolabel newsround-promo__promolabel--charcoal-purple newsround-promo__promolabel--duration" data-reactid=".47x0ykjrrm.1.9.0.1.$51989370.0.0.0.1"><div class="gel-icon gel-icon--play newsround-promo__icon" data-reactid=".47x0ykjrrm.1.9.0.1.$51989370.0.0.0.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.9.0.1.$51989370.0.0.0.1.0.0"><title data-reactid=".47x0ykjrrm.1.9.0.1.$51989370.0.0.0.1.0.0.0">play</title><path d="M3 32l26-16L3 0v32z" data-reactid=".47x0ykjrrm.1.9.0.1.$51989370.0.0.0.1.0.0.1"></path></svg></div><span class="duration" data-reactid=".47x0ykjrrm.1.9.0.1.$51989370.0.0.0.1.1">1:08</span></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.9.0.1.$51989370.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.9.0.1.$51989370.0.0.1.0">Social distancing explained - with dominoes</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.9.0.1.$51989370.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.9.0.1.$51989370.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.9.0.1.$51989370.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.9.0.1.$51989370.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.9.0.1.$51989370.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.9.0.1.$51989370.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.9.0.1.$51989370.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-03-29T13:38:07+00:00" data-datetime="29 Mar 2020" data-reactid=".47x0ykjrrm.1.9.0.1.$51989370.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.9.0.1.$51989370.0.0.1.2.0.0.1.0">29 Mar 2020</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.9.0.1.$51989370.0.0.1.2.0.0.1.1">29 March 2020</span></time></span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-2" data-reactid=".47x0ykjrrm.1.9.0.1.$51698180"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_2-32" data-reactid=".47x0ykjrrm.1.9.0.1.$51698180.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/51698180" class="newsround-promo__content newsround-promo__content--charcoal-purple" data-reactid=".47x0ykjrrm.1.9.0.1.$51698180.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.9.0.1.$51698180.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.9.0.1.$51698180.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/179ED/production/_111094769_p0859hzb.jpg" alt="how to wash your hands." class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.9.0.1.$51698180.0.0.0.0.0"/></div><span class="newsround-promo__promolabel newsround-promo__promolabel--charcoal-purple newsround-promo__promolabel--duration" data-reactid=".47x0ykjrrm.1.9.0.1.$51698180.0.0.0.1"><div class="gel-icon gel-icon--play newsround-promo__icon" data-reactid=".47x0ykjrrm.1.9.0.1.$51698180.0.0.0.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.9.0.1.$51698180.0.0.0.1.0.0"><title data-reactid=".47x0ykjrrm.1.9.0.1.$51698180.0.0.0.1.0.0.0">play</title><path d="M3 32l26-16L3 0v32z" data-reactid=".47x0ykjrrm.1.9.0.1.$51698180.0.0.0.1.0.0.1"></path></svg></div><span class="duration" data-reactid=".47x0ykjrrm.1.9.0.1.$51698180.0.0.0.1.1">0:43</span></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.9.0.1.$51698180.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.9.0.1.$51698180.0.0.1.0">How to wash your hands</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.9.0.1.$51698180.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.9.0.1.$51698180.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.9.0.1.$51698180.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.9.0.1.$51698180.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.9.0.1.$51698180.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.9.0.1.$51698180.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.9.0.1.$51698180.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-05T08:15:53+00:00" data-datetime="5 May 2020" data-reactid=".47x0ykjrrm.1.9.0.1.$51698180.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.9.0.1.$51698180.0.0.1.2.0.0.1.0">5 May 2020</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.9.0.1.$51698180.0.0.1.2.0.0.1.1">5 May 2020</span></time></span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-2" data-reactid=".47x0ykjrrm.1.9.0.1.$51959552"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_2-33" data-reactid=".47x0ykjrrm.1.9.0.1.$51959552.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/51959552" class="newsround-promo__content newsround-promo__content--charcoal-purple" data-reactid=".47x0ykjrrm.1.9.0.1.$51959552.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.9.0.1.$51959552.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.9.0.1.$51959552.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/1812D/production/_111350689_p0871sr2.jpg" alt="DR James and his dog Oliver" class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.9.0.1.$51959552.0.0.0.0.0"/></div><span class="newsround-promo__promolabel newsround-promo__promolabel--charcoal-purple newsround-promo__promolabel--duration" data-reactid=".47x0ykjrrm.1.9.0.1.$51959552.0.0.0.1"><div class="gel-icon gel-icon--play newsround-promo__icon" data-reactid=".47x0ykjrrm.1.9.0.1.$51959552.0.0.0.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.9.0.1.$51959552.0.0.0.1.0.0"><title data-reactid=".47x0ykjrrm.1.9.0.1.$51959552.0.0.0.1.0.0.0">play</title><path d="M3 32l26-16L3 0v32z" data-reactid=".47x0ykjrrm.1.9.0.1.$51959552.0.0.0.1.0.0.1"></path></svg></div><span class="duration" data-reactid=".47x0ykjrrm.1.9.0.1.$51959552.0.0.0.1.1">2:43</span></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.9.0.1.$51959552.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.9.0.1.$51959552.0.0.1.0">Advice on looking after pets during Coronavirus</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.9.0.1.$51959552.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.9.0.1.$51959552.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.9.0.1.$51959552.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.9.0.1.$51959552.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.9.0.1.$51959552.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.9.0.1.$51959552.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.9.0.1.$51959552.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-03-23T11:34:02+00:00" data-datetime="23 Mar 2020" data-reactid=".47x0ykjrrm.1.9.0.1.$51959552.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.9.0.1.$51959552.0.0.1.2.0.0.1.0">23 Mar 2020</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.9.0.1.$51959552.0.0.1.2.0.0.1.1">23 March 2020</span></time></span></div></div></div></a></div></div></div></div><div class="newsround-more-stories__outer newsround-more-stories__outer--more-stories-2" data-reactid=".47x0ykjrrm.1.9.1"><div class="gs-u-box-size newsround-more-stories__show-more-wrapper newsround-more-stories__show-more-wrapper--more-stories-2" data-reactid=".47x0ykjrrm.1.9.1.0"><div class="newsround-more-stories__show-more newsround-more-stories__show-more--more-stories-2" data-reactid=".47x0ykjrrm.1.9.1.0.0"><div class="newsround-more-stories__show-more-button-container newsround-more-stories__show-more-button-container--more-stories-2" data-reactid=".47x0ykjrrm.1.9.1.0.0.0"><div class="newsround-more-stories__show-more-button" data-reactid=".47x0ykjrrm.1.9.1.0.0.0.0"><button class="newsround-button newsround-button--charcoal-purple" tabindex="-1" aria-label="Show more stories" data-reactid=".47x0ykjrrm.1.9.1.0.0.0.0.0"><span data-reactid=".47x0ykjrrm.1.9.1.0.0.0.0.0.1">Show more</span></button></div></div></div></div></div></section><section id="more-stories-3" class="newsround-more-stories newsround-more-stories--more-stories-3" data-istats-track-scroll-visibility="nr_home_more_stories_3" data-reactid=".47x0ykjrrm.1.a"><div class="gs-u-box-size newsround-more-stories__wrapper" data-reactid=".47x0ykjrrm.1.a.0"><div class="newsround-more-stories__header" data-reactid=".47x0ykjrrm.1.a.0.0"><div class="newsround-more-stories__header-item" data-reactid=".47x0ykjrrm.1.a.0.0.0"><h2 class="newsround-more-stories__header-title newsround-more-stories__header-title--more-stories-3" data-reactid=".47x0ykjrrm.1.a.0.0.0.0">Gaming</h2></div></div><div class="newsround-more-stories__stories" style="height:478px;" data-reactid=".47x0ykjrrm.1.a.0.1"><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-3" data-reactid=".47x0ykjrrm.1.a.0.1.$52076081"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_3-1" data-reactid=".47x0ykjrrm.1.a.0.1.$52076081.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/52076081" class="newsround-promo__content newsround-promo__content--purple" data-reactid=".47x0ykjrrm.1.a.0.1.$52076081.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.a.0.1.$52076081.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.a.0.1.$52076081.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/1382D/production/_111471997_dungeons.jpg" alt="minecraft-dungeons-cover-art." class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.a.0.1.$52076081.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.a.0.1.$52076081.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.a.0.1.$52076081.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.a.0.1.$52076081.0.0.1.0">Minecraft Dungeons is out!</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.a.0.1.$52076081.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.a.0.1.$52076081.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.a.0.1.$52076081.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.a.0.1.$52076081.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.a.0.1.$52076081.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.a.0.1.$52076081.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.a.0.1.$52076081.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-27T07:37:36+00:00" data-datetime="4 days ago" data-reactid=".47x0ykjrrm.1.a.0.1.$52076081.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.a.0.1.$52076081.0.0.1.2.0.0.1.0">4 days ago</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.a.0.1.$52076081.0.0.1.2.0.0.1.1">4 days ago</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".47x0ykjrrm.1.a.0.1.$52076081.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".47x0ykjrrm.1.a.0.1.$52076081.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.a.0.1.$52076081.0.0.1.2.1.0.0"><title data-reactid=".47x0ykjrrm.1.a.0.1.$52076081.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".47x0ykjrrm.1.a.0.1.$52076081.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".47x0ykjrrm.1.a.0.1.$52076081.0.0.1.2.1.1">44</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-3" data-reactid=".47x0ykjrrm.1.a.0.1.$52769868"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_3-2" data-reactid=".47x0ykjrrm.1.a.0.1.$52769868.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/52769868" class="newsround-promo__content newsround-promo__content--purple" data-reactid=".47x0ykjrrm.1.a.0.1.$52769868.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.a.0.1.$52769868.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.a.0.1.$52769868.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/17AF2/production/_96501079_pac-man.gif" alt="Pac-Man ghosts" class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.a.0.1.$52769868.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.a.0.1.$52769868.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.a.0.1.$52769868.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.a.0.1.$52769868.0.0.1.0">Five facts for Pac-Man's 40th</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.a.0.1.$52769868.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.a.0.1.$52769868.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.a.0.1.$52769868.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.a.0.1.$52769868.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.a.0.1.$52769868.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.a.0.1.$52769868.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.a.0.1.$52769868.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-22T16:21:46+00:00" data-datetime="22 May 2020" data-reactid=".47x0ykjrrm.1.a.0.1.$52769868.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.a.0.1.$52769868.0.0.1.2.0.0.1.0">22 May 2020</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.a.0.1.$52769868.0.0.1.2.0.0.1.1">22 May 2020</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".47x0ykjrrm.1.a.0.1.$52769868.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".47x0ykjrrm.1.a.0.1.$52769868.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.a.0.1.$52769868.0.0.1.2.1.0.0"><title data-reactid=".47x0ykjrrm.1.a.0.1.$52769868.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".47x0ykjrrm.1.a.0.1.$52769868.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".47x0ykjrrm.1.a.0.1.$52769868.0.0.1.2.1.1">8</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-3" data-reactid=".47x0ykjrrm.1.a.0.1.$52136993"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_3-3" data-reactid=".47x0ykjrrm.1.a.0.1.$52136993.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/52136993" class="newsround-promo__content newsround-promo__content--purple" data-reactid=".47x0ykjrrm.1.a.0.1.$52136993.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.a.0.1.$52136993.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.a.0.1.$52136993.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/14156/production/_111526228_season22motage.jpg" alt="fortnite-chapter-2-season-2." class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.a.0.1.$52136993.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.a.0.1.$52136993.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.a.0.1.$52136993.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.a.0.1.$52136993.0.0.1.0">Gaming top tips: Fortnite</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.a.0.1.$52136993.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.a.0.1.$52136993.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.a.0.1.$52136993.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.a.0.1.$52136993.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.a.0.1.$52136993.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.a.0.1.$52136993.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.a.0.1.$52136993.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-04-08T12:52:18+00:00" data-datetime="8 Apr 2020" data-reactid=".47x0ykjrrm.1.a.0.1.$52136993.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.a.0.1.$52136993.0.0.1.2.0.0.1.0">8 Apr 2020</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.a.0.1.$52136993.0.0.1.2.0.0.1.1">8 April 2020</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".47x0ykjrrm.1.a.0.1.$52136993.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".47x0ykjrrm.1.a.0.1.$52136993.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.a.0.1.$52136993.0.0.1.2.1.0.0"><title data-reactid=".47x0ykjrrm.1.a.0.1.$52136993.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".47x0ykjrrm.1.a.0.1.$52136993.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".47x0ykjrrm.1.a.0.1.$52136993.0.0.1.2.1.1">70</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-3" data-reactid=".47x0ykjrrm.1.a.0.1.$52105524"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_3-4" data-reactid=".47x0ykjrrm.1.a.0.1.$52105524.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/52105524" class="newsround-promo__content newsround-promo__content--purple" data-reactid=".47x0ykjrrm.1.a.0.1.$52105524.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.a.0.1.$52105524.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.a.0.1.$52105524.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/4DA7/production/_111497891_mediaitem111497890.jpg" alt="animal-crossing." class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.a.0.1.$52105524.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.a.0.1.$52105524.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.a.0.1.$52105524.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.a.0.1.$52105524.0.0.1.0">Gaming top tips: Animal Crossing</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.a.0.1.$52105524.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.a.0.1.$52105524.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.a.0.1.$52105524.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.a.0.1.$52105524.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.a.0.1.$52105524.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.a.0.1.$52105524.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.a.0.1.$52105524.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-04-08T11:17:17+00:00" data-datetime="8 Apr 2020" data-reactid=".47x0ykjrrm.1.a.0.1.$52105524.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.a.0.1.$52105524.0.0.1.2.0.0.1.0">8 Apr 2020</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.a.0.1.$52105524.0.0.1.2.0.0.1.1">8 April 2020</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".47x0ykjrrm.1.a.0.1.$52105524.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".47x0ykjrrm.1.a.0.1.$52105524.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.a.0.1.$52105524.0.0.1.2.1.0.0"><title data-reactid=".47x0ykjrrm.1.a.0.1.$52105524.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".47x0ykjrrm.1.a.0.1.$52105524.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".47x0ykjrrm.1.a.0.1.$52105524.0.0.1.2.1.1">35</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-3" data-reactid=".47x0ykjrrm.1.a.0.1.$52118980"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_3-5" data-reactid=".47x0ykjrrm.1.a.0.1.$52118980.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/52118980" class="newsround-promo__content newsround-promo__content--purple" data-reactid=".47x0ykjrrm.1.a.0.1.$52118980.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.a.0.1.$52118980.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.a.0.1.$52118980.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/7438/production/_111525792_minecraft_horizontal_key_art.jpg" alt="minecraft." class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.a.0.1.$52118980.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.a.0.1.$52118980.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.a.0.1.$52118980.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.a.0.1.$52118980.0.0.1.0">Gaming top tips: Minecraft</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.a.0.1.$52118980.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.a.0.1.$52118980.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.a.0.1.$52118980.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.a.0.1.$52118980.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.a.0.1.$52118980.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.a.0.1.$52118980.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.a.0.1.$52118980.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-04-08T11:26:34+00:00" data-datetime="8 Apr 2020" data-reactid=".47x0ykjrrm.1.a.0.1.$52118980.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.a.0.1.$52118980.0.0.1.2.0.0.1.0">8 Apr 2020</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.a.0.1.$52118980.0.0.1.2.0.0.1.1">8 April 2020</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".47x0ykjrrm.1.a.0.1.$52118980.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".47x0ykjrrm.1.a.0.1.$52118980.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.a.0.1.$52118980.0.0.1.2.1.0.0"><title data-reactid=".47x0ykjrrm.1.a.0.1.$52118980.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".47x0ykjrrm.1.a.0.1.$52118980.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".47x0ykjrrm.1.a.0.1.$52118980.0.0.1.2.1.1">57</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-3" data-reactid=".47x0ykjrrm.1.a.0.1.$52230222"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_3-6" data-reactid=".47x0ykjrrm.1.a.0.1.$52230222.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/52230222" class="newsround-promo__content newsround-promo__content--purple" data-reactid=".47x0ykjrrm.1.a.0.1.$52230222.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.a.0.1.$52230222.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.a.0.1.$52230222.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/3CB6/production/_111724551_fifa20.jpg" alt="Jadon-Sancho-FIFA20." class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.a.0.1.$52230222.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.a.0.1.$52230222.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.a.0.1.$52230222.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.a.0.1.$52230222.0.0.1.0">Gaming top tips: Fifa 20</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.a.0.1.$52230222.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.a.0.1.$52230222.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.a.0.1.$52230222.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.a.0.1.$52230222.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.a.0.1.$52230222.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.a.0.1.$52230222.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.a.0.1.$52230222.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-04-14T13:01:54+00:00" data-datetime="14 Apr 2020" data-reactid=".47x0ykjrrm.1.a.0.1.$52230222.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.a.0.1.$52230222.0.0.1.2.0.0.1.0">14 Apr 2020</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.a.0.1.$52230222.0.0.1.2.0.0.1.1">14 April 2020</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".47x0ykjrrm.1.a.0.1.$52230222.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".47x0ykjrrm.1.a.0.1.$52230222.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.a.0.1.$52230222.0.0.1.2.1.0.0"><title data-reactid=".47x0ykjrrm.1.a.0.1.$52230222.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".47x0ykjrrm.1.a.0.1.$52230222.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".47x0ykjrrm.1.a.0.1.$52230222.0.0.1.2.1.1">10</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-3" data-reactid=".47x0ykjrrm.1.a.0.1.$52487582"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_3-7" data-reactid=".47x0ykjrrm.1.a.0.1.$52487582.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/52487582" class="newsround-promo__content newsround-promo__content--purple" data-reactid=".47x0ykjrrm.1.a.0.1.$52487582.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.a.0.1.$52487582.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.a.0.1.$52487582.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/149B5/production/_112050448_mediaitem112049974.jpg" alt="mario-tennis." class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.a.0.1.$52487582.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.a.0.1.$52487582.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.a.0.1.$52487582.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.a.0.1.$52487582.0.0.1.0">Who won the all-star Mario Tennis tournament?</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.a.0.1.$52487582.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.a.0.1.$52487582.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.a.0.1.$52487582.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.a.0.1.$52487582.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.a.0.1.$52487582.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.a.0.1.$52487582.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.a.0.1.$52487582.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-04T08:33:29+00:00" data-datetime="4 May 2020" data-reactid=".47x0ykjrrm.1.a.0.1.$52487582.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.a.0.1.$52487582.0.0.1.2.0.0.1.0">4 May 2020</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.a.0.1.$52487582.0.0.1.2.0.0.1.1">4 May 2020</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".47x0ykjrrm.1.a.0.1.$52487582.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".47x0ykjrrm.1.a.0.1.$52487582.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.a.0.1.$52487582.0.0.1.2.1.0.0"><title data-reactid=".47x0ykjrrm.1.a.0.1.$52487582.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".47x0ykjrrm.1.a.0.1.$52487582.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".47x0ykjrrm.1.a.0.1.$52487582.0.0.1.2.1.1">6</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-3" data-reactid=".47x0ykjrrm.1.a.0.1.$52151617"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_3-8" data-reactid=".47x0ykjrrm.1.a.0.1.$52151617.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/52151617" class="newsround-promo__content newsround-promo__content--purple" data-reactid=".47x0ykjrrm.1.a.0.1.$52151617.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.a.0.1.$52151617.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.a.0.1.$52151617.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/12CA/production/_111601840_witchbrook_image_3.png" alt="witchbrook." class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.a.0.1.$52151617.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.a.0.1.$52151617.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.a.0.1.$52151617.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.a.0.1.$52151617.0.0.1.0">Harry Potter meets Stardew Valley in new game Witchbrook</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.a.0.1.$52151617.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.a.0.1.$52151617.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.a.0.1.$52151617.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.a.0.1.$52151617.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.a.0.1.$52151617.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.a.0.1.$52151617.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.a.0.1.$52151617.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-04-05T09:06:01+00:00" data-datetime="5 Apr 2020" data-reactid=".47x0ykjrrm.1.a.0.1.$52151617.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.a.0.1.$52151617.0.0.1.2.0.0.1.0">5 Apr 2020</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.a.0.1.$52151617.0.0.1.2.0.0.1.1">5 April 2020</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".47x0ykjrrm.1.a.0.1.$52151617.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".47x0ykjrrm.1.a.0.1.$52151617.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.a.0.1.$52151617.0.0.1.2.1.0.0"><title data-reactid=".47x0ykjrrm.1.a.0.1.$52151617.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".47x0ykjrrm.1.a.0.1.$52151617.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".47x0ykjrrm.1.a.0.1.$52151617.0.0.1.2.1.1">8</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-3" data-reactid=".47x0ykjrrm.1.a.0.1.$52740567"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_3-9" data-reactid=".47x0ykjrrm.1.a.0.1.$52740567.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/52740567" class="newsround-promo__content newsround-promo__content--purple" data-reactid=".47x0ykjrrm.1.a.0.1.$52740567.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.a.0.1.$52740567.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.a.0.1.$52740567.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/AEDF/production/_112176744_gaminggran.jpg" alt="Hamako-Mori." class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.a.0.1.$52740567.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.a.0.1.$52740567.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.a.0.1.$52740567.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.a.0.1.$52740567.0.0.1.0">Meet the gaming granny who has just broken a world record!</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.a.0.1.$52740567.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.a.0.1.$52740567.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.a.0.1.$52740567.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.a.0.1.$52740567.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.a.0.1.$52740567.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.a.0.1.$52740567.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.a.0.1.$52740567.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-20T14:06:12+00:00" data-datetime="20 May 2020" data-reactid=".47x0ykjrrm.1.a.0.1.$52740567.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.a.0.1.$52740567.0.0.1.2.0.0.1.0">20 May 2020</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.a.0.1.$52740567.0.0.1.2.0.0.1.1">20 May 2020</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".47x0ykjrrm.1.a.0.1.$52740567.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".47x0ykjrrm.1.a.0.1.$52740567.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.a.0.1.$52740567.0.0.1.2.1.0.0"><title data-reactid=".47x0ykjrrm.1.a.0.1.$52740567.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".47x0ykjrrm.1.a.0.1.$52740567.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".47x0ykjrrm.1.a.0.1.$52740567.0.0.1.2.1.1">50</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-3" data-reactid=".47x0ykjrrm.1.a.0.1.$52810167"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_3-10" data-reactid=".47x0ykjrrm.1.a.0.1.$52810167.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/52810167" class="newsround-promo__content newsround-promo__content--purple" data-reactid=".47x0ykjrrm.1.a.0.1.$52810167.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.a.0.1.$52810167.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.a.0.1.$52810167.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/3CAA/production/_112503551_shutterstock_editorial_8846726b.jpg" alt="daniel-abt-in-racing-car" class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.a.0.1.$52810167.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.a.0.1.$52810167.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.a.0.1.$52810167.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.a.0.1.$52810167.0.0.1.0">Pro race driver cheats in online tournament</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.a.0.1.$52810167.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.a.0.1.$52810167.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.a.0.1.$52810167.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.a.0.1.$52810167.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.a.0.1.$52810167.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.a.0.1.$52810167.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.a.0.1.$52810167.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-26T13:36:03+00:00" data-datetime="5 days ago" data-reactid=".47x0ykjrrm.1.a.0.1.$52810167.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.a.0.1.$52810167.0.0.1.2.0.0.1.0">5 days ago</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.a.0.1.$52810167.0.0.1.2.0.0.1.1">5 days ago</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".47x0ykjrrm.1.a.0.1.$52810167.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".47x0ykjrrm.1.a.0.1.$52810167.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.a.0.1.$52810167.0.0.1.2.1.0.0"><title data-reactid=".47x0ykjrrm.1.a.0.1.$52810167.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".47x0ykjrrm.1.a.0.1.$52810167.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".47x0ykjrrm.1.a.0.1.$52810167.0.0.1.2.1.1">4</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-3" data-reactid=".47x0ykjrrm.1.a.0.1.$52673146"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_3-11" data-reactid=".47x0ykjrrm.1.a.0.1.$52673146.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/52673146" class="newsround-promo__content newsround-promo__content--purple" data-reactid=".47x0ykjrrm.1.a.0.1.$52673146.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.a.0.1.$52673146.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.a.0.1.$52673146.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/01D4/production/_112286400_mediaitem112286399.jpg" alt="paper-mario." class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.a.0.1.$52673146.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.a.0.1.$52673146.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.a.0.1.$52673146.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.a.0.1.$52673146.0.0.1.0">The new Mario game coming to Switch</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.a.0.1.$52673146.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.a.0.1.$52673146.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.a.0.1.$52673146.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.a.0.1.$52673146.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.a.0.1.$52673146.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.a.0.1.$52673146.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.a.0.1.$52673146.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-16T07:15:08+00:00" data-datetime="16 May 2020" data-reactid=".47x0ykjrrm.1.a.0.1.$52673146.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.a.0.1.$52673146.0.0.1.2.0.0.1.0">16 May 2020</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.a.0.1.$52673146.0.0.1.2.0.0.1.1">16 May 2020</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".47x0ykjrrm.1.a.0.1.$52673146.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".47x0ykjrrm.1.a.0.1.$52673146.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.a.0.1.$52673146.0.0.1.2.1.0.0"><title data-reactid=".47x0ykjrrm.1.a.0.1.$52673146.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".47x0ykjrrm.1.a.0.1.$52673146.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".47x0ykjrrm.1.a.0.1.$52673146.0.0.1.2.1.1">17</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-3" data-reactid=".47x0ykjrrm.1.a.0.1.$52500501"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_3-12" data-reactid=".47x0ykjrrm.1.a.0.1.$52500501.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/52500501" class="newsround-promo__content newsround-promo__content--purple" data-reactid=".47x0ykjrrm.1.a.0.1.$52500501.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.a.0.1.$52500501.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.a.0.1.$52500501.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/7FA5/production/_112077623_mediaitem112058095.jpg" alt="Andy-Murray" class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.a.0.1.$52500501.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.a.0.1.$52500501.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.a.0.1.$52500501.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.a.0.1.$52500501.0.0.1.0">Andy Murray wins Madrid Open...on PlayStation!</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.a.0.1.$52500501.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.a.0.1.$52500501.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.a.0.1.$52500501.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.a.0.1.$52500501.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.a.0.1.$52500501.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.a.0.1.$52500501.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.a.0.1.$52500501.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-01T09:15:38+00:00" data-datetime="1 May 2020" data-reactid=".47x0ykjrrm.1.a.0.1.$52500501.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.a.0.1.$52500501.0.0.1.2.0.0.1.0">1 May 2020</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.a.0.1.$52500501.0.0.1.2.0.0.1.1">1 May 2020</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".47x0ykjrrm.1.a.0.1.$52500501.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".47x0ykjrrm.1.a.0.1.$52500501.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.a.0.1.$52500501.0.0.1.2.1.0.0"><title data-reactid=".47x0ykjrrm.1.a.0.1.$52500501.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".47x0ykjrrm.1.a.0.1.$52500501.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".47x0ykjrrm.1.a.0.1.$52500501.0.0.1.2.1.1">7</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-3" data-reactid=".47x0ykjrrm.1.a.0.1.$52456575"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_3-13" data-reactid=".47x0ykjrrm.1.a.0.1.$52456575.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/52456575" class="newsround-promo__content newsround-promo__content--purple" data-reactid=".47x0ykjrrm.1.a.0.1.$52456575.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.a.0.1.$52456575.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.a.0.1.$52456575.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/934F/production/_112011773_mining.jpg" alt="data-mining." class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.a.0.1.$52456575.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.a.0.1.$52456575.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.a.0.1.$52456575.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.a.0.1.$52456575.0.0.1.0">How coding detectives dig out gaming secrets</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.a.0.1.$52456575.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.a.0.1.$52456575.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.a.0.1.$52456575.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.a.0.1.$52456575.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.a.0.1.$52456575.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.a.0.1.$52456575.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.a.0.1.$52456575.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-04-29T05:37:48+00:00" data-datetime="29 Apr 2020" data-reactid=".47x0ykjrrm.1.a.0.1.$52456575.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.a.0.1.$52456575.0.0.1.2.0.0.1.0">29 Apr 2020</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.a.0.1.$52456575.0.0.1.2.0.0.1.1">29 April 2020</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".47x0ykjrrm.1.a.0.1.$52456575.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".47x0ykjrrm.1.a.0.1.$52456575.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.a.0.1.$52456575.0.0.1.2.1.0.0"><title data-reactid=".47x0ykjrrm.1.a.0.1.$52456575.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".47x0ykjrrm.1.a.0.1.$52456575.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".47x0ykjrrm.1.a.0.1.$52456575.0.0.1.2.1.1">27</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-3" data-reactid=".47x0ykjrrm.1.a.0.1.$52136687"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_3-14" data-reactid=".47x0ykjrrm.1.a.0.1.$52136687.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/52136687" class="newsround-promo__content newsround-promo__content--purple" data-reactid=".47x0ykjrrm.1.a.0.1.$52136687.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.a.0.1.$52136687.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.a.0.1.$52136687.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/16989/production/_111535529_2df67d9b-7138-4e93-9eab-11ba4a791953.jpg" alt="Polishing-a-bafta" class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.a.0.1.$52136687.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.a.0.1.$52136687.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.a.0.1.$52136687.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.a.0.1.$52136687.0.0.1.0">Bafta Games Awards to take place online</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.a.0.1.$52136687.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.a.0.1.$52136687.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.a.0.1.$52136687.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.a.0.1.$52136687.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.a.0.1.$52136687.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.a.0.1.$52136687.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.a.0.1.$52136687.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-04-02T17:08:48+00:00" data-datetime="2 Apr 2020" data-reactid=".47x0ykjrrm.1.a.0.1.$52136687.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.a.0.1.$52136687.0.0.1.2.0.0.1.0">2 Apr 2020</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.a.0.1.$52136687.0.0.1.2.0.0.1.1">2 April 2020</span></time></span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-3" data-reactid=".47x0ykjrrm.1.a.0.1.$52180192"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_3-15" data-reactid=".47x0ykjrrm.1.a.0.1.$52180192.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/52180192" class="newsround-promo__content newsround-promo__content--purple" data-reactid=".47x0ykjrrm.1.a.0.1.$52180192.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.a.0.1.$52180192.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.a.0.1.$52180192.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/14B38/production/_111629748_drewmcintrye.jpg" alt="Drew McIntyre." class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.a.0.1.$52180192.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.a.0.1.$52180192.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.a.0.1.$52180192.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.a.0.1.$52180192.0.0.1.0">WrestleMania 36: Six things you need to know</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.a.0.1.$52180192.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.a.0.1.$52180192.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.a.0.1.$52180192.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.a.0.1.$52180192.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.a.0.1.$52180192.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.a.0.1.$52180192.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.a.0.1.$52180192.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-04-06T12:58:48+00:00" data-datetime="6 Apr 2020" data-reactid=".47x0ykjrrm.1.a.0.1.$52180192.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.a.0.1.$52180192.0.0.1.2.0.0.1.0">6 Apr 2020</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.a.0.1.$52180192.0.0.1.2.0.0.1.1">6 April 2020</span></time></span></div><div class="newsround-promo__comments-signpost newsround-promo__comments-signpost-without-count" data-reactid=".47x0ykjrrm.1.a.0.1.$52180192.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".47x0ykjrrm.1.a.0.1.$52180192.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.a.0.1.$52180192.0.0.1.2.1.0.0"><title data-reactid=".47x0ykjrrm.1.a.0.1.$52180192.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".47x0ykjrrm.1.a.0.1.$52180192.0.0.1.2.1.0.0.1"></path></svg></div></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-3" data-reactid=".47x0ykjrrm.1.a.0.1.$51976450"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_3-16" data-reactid=".47x0ykjrrm.1.a.0.1.$51976450.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/51976450" class="newsround-promo__content newsround-promo__content--purple" data-reactid=".47x0ykjrrm.1.a.0.1.$51976450.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.a.0.1.$51976450.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.a.0.1.$51976450.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/1212B/production/_111372047_echo_webbanner_final_v3.png" alt="echo-overwatch." class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.a.0.1.$51976450.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.a.0.1.$51976450.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.a.0.1.$51976450.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.a.0.1.$51976450.0.0.1.0">Who's the new Overwatch character?</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.a.0.1.$51976450.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.a.0.1.$51976450.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.a.0.1.$51976450.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.a.0.1.$51976450.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.a.0.1.$51976450.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.a.0.1.$51976450.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.a.0.1.$51976450.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-03-20T12:27:11+00:00" data-datetime="20 Mar 2020" data-reactid=".47x0ykjrrm.1.a.0.1.$51976450.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.a.0.1.$51976450.0.0.1.2.0.0.1.0">20 Mar 2020</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.a.0.1.$51976450.0.0.1.2.0.0.1.1">20 March 2020</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".47x0ykjrrm.1.a.0.1.$51976450.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".47x0ykjrrm.1.a.0.1.$51976450.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.a.0.1.$51976450.0.0.1.2.1.0.0"><title data-reactid=".47x0ykjrrm.1.a.0.1.$51976450.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".47x0ykjrrm.1.a.0.1.$51976450.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".47x0ykjrrm.1.a.0.1.$51976450.0.0.1.2.1.1">3</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-3" data-reactid=".47x0ykjrrm.1.a.0.1.$51962151"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_3-17" data-reactid=".47x0ykjrrm.1.a.0.1.$51962151.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/51962151" class="newsround-promo__content newsround-promo__content--purple" data-reactid=".47x0ykjrrm.1.a.0.1.$51962151.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.a.0.1.$51962151.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.a.0.1.$51962151.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/54DE/production/_111362712_mediaitem111362711.jpg" alt="animal-crossing-tent." class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.a.0.1.$51962151.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.a.0.1.$51962151.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.a.0.1.$51962151.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.a.0.1.$51962151.0.0.1.0">Animal Crossing New Horizons is out! Here's all you need to know</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.a.0.1.$51962151.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.a.0.1.$51962151.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.a.0.1.$51962151.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.a.0.1.$51962151.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.a.0.1.$51962151.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.a.0.1.$51962151.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.a.0.1.$51962151.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-03-20T06:48:08+00:00" data-datetime="20 Mar 2020" data-reactid=".47x0ykjrrm.1.a.0.1.$51962151.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.a.0.1.$51962151.0.0.1.2.0.0.1.0">20 Mar 2020</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.a.0.1.$51962151.0.0.1.2.0.0.1.1">20 March 2020</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".47x0ykjrrm.1.a.0.1.$51962151.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".47x0ykjrrm.1.a.0.1.$51962151.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.a.0.1.$51962151.0.0.1.2.1.0.0"><title data-reactid=".47x0ykjrrm.1.a.0.1.$51962151.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".47x0ykjrrm.1.a.0.1.$51962151.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".47x0ykjrrm.1.a.0.1.$51962151.0.0.1.2.1.1">5</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-3" data-reactid=".47x0ykjrrm.1.a.0.1.$51266122"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_3-18" data-reactid=".47x0ykjrrm.1.a.0.1.$51266122.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/51266122" class="newsround-promo__content newsround-promo__content--purple" data-reactid=".47x0ykjrrm.1.a.0.1.$51266122.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.a.0.1.$51266122.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.a.0.1.$51266122.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/13E34/production/_110706418_b1e649d2-0c17-4265-9351-26a41a7f5264.jpg" alt="the-sims-game-characters." class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.a.0.1.$51266122.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.a.0.1.$51266122.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.a.0.1.$51266122.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.a.0.1.$51266122.0.0.1.0">The Sims turns 20!</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.a.0.1.$51266122.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.a.0.1.$51266122.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.a.0.1.$51266122.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.a.0.1.$51266122.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.a.0.1.$51266122.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.a.0.1.$51266122.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.a.0.1.$51266122.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-02-09T08:11:56+00:00" data-datetime="9 Feb 2020" data-reactid=".47x0ykjrrm.1.a.0.1.$51266122.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.a.0.1.$51266122.0.0.1.2.0.0.1.0">9 Feb 2020</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.a.0.1.$51266122.0.0.1.2.0.0.1.1">9 February 2020</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".47x0ykjrrm.1.a.0.1.$51266122.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".47x0ykjrrm.1.a.0.1.$51266122.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.a.0.1.$51266122.0.0.1.2.1.0.0"><title data-reactid=".47x0ykjrrm.1.a.0.1.$51266122.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".47x0ykjrrm.1.a.0.1.$51266122.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".47x0ykjrrm.1.a.0.1.$51266122.0.0.1.2.1.1">9</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-3" data-reactid=".47x0ykjrrm.1.a.0.1.$51733247"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_3-19" data-reactid=".47x0ykjrrm.1.a.0.1.$51733247.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/51733247" class="newsround-promo__content newsround-promo__content--purple" data-reactid=".47x0ykjrrm.1.a.0.1.$51733247.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.a.0.1.$51733247.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.a.0.1.$51733247.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/12763/production/_109491657_mariokart.jpg" alt="mario-kart-tour." class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.a.0.1.$51733247.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.a.0.1.$51733247.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.a.0.1.$51733247.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.a.0.1.$51733247.0.0.1.0">Mario Kart Tour finally gets multiplayer mode!</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.a.0.1.$51733247.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.a.0.1.$51733247.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.a.0.1.$51733247.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.a.0.1.$51733247.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.a.0.1.$51733247.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.a.0.1.$51733247.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.a.0.1.$51733247.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-03-04T07:17:04+00:00" data-datetime="4 Mar 2020" data-reactid=".47x0ykjrrm.1.a.0.1.$51733247.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.a.0.1.$51733247.0.0.1.2.0.0.1.0">4 Mar 2020</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.a.0.1.$51733247.0.0.1.2.0.0.1.1">4 March 2020</span></time></span></div><div class="newsround-promo__comments-signpost newsround-promo__comments-signpost-without-count" data-reactid=".47x0ykjrrm.1.a.0.1.$51733247.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".47x0ykjrrm.1.a.0.1.$51733247.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.a.0.1.$51733247.0.0.1.2.1.0.0"><title data-reactid=".47x0ykjrrm.1.a.0.1.$51733247.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".47x0ykjrrm.1.a.0.1.$51733247.0.0.1.2.1.0.0.1"></path></svg></div></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-3" data-reactid=".47x0ykjrrm.1.a.0.1.$51476191"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_3-20" data-reactid=".47x0ykjrrm.1.a.0.1.$51476191.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/51476191" class="newsround-promo__content newsround-promo__content--purple" data-reactid=".47x0ykjrrm.1.a.0.1.$51476191.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.a.0.1.$51476191.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.a.0.1.$51476191.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/4675/production/_110873081_profesoroak.jpg" alt="professor-oak" class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.a.0.1.$51476191.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.a.0.1.$51476191.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.a.0.1.$51476191.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.a.0.1.$51476191.0.0.1.0">Pok茅mon: What do you think of Professor Oak's new look?</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.a.0.1.$51476191.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.a.0.1.$51476191.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.a.0.1.$51476191.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.a.0.1.$51476191.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.a.0.1.$51476191.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.a.0.1.$51476191.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.a.0.1.$51476191.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-02-13T06:12:08+00:00" data-datetime="13 Feb 2020" data-reactid=".47x0ykjrrm.1.a.0.1.$51476191.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.a.0.1.$51476191.0.0.1.2.0.0.1.0">13 Feb 2020</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.a.0.1.$51476191.0.0.1.2.0.0.1.1">13 February 2020</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".47x0ykjrrm.1.a.0.1.$51476191.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".47x0ykjrrm.1.a.0.1.$51476191.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.a.0.1.$51476191.0.0.1.2.1.0.0"><title data-reactid=".47x0ykjrrm.1.a.0.1.$51476191.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".47x0ykjrrm.1.a.0.1.$51476191.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".47x0ykjrrm.1.a.0.1.$51476191.0.0.1.2.1.1">11</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-3" data-reactid=".47x0ykjrrm.1.a.0.1.$51441467"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_3-21" data-reactid=".47x0ykjrrm.1.a.0.1.$51441467.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/51441467" class="newsround-promo__content newsround-promo__content--purple" data-reactid=".47x0ykjrrm.1.a.0.1.$51441467.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.a.0.1.$51441467.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.a.0.1.$51441467.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/E442/production/_110843485_mediaitem110836356.jpg" alt="Fifa eClub World Cup" class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.a.0.1.$51441467.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.a.0.1.$51441467.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.a.0.1.$51441467.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.a.0.1.$51441467.0.0.1.0">Who won the Fifa eClub World Cup?</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.a.0.1.$51441467.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.a.0.1.$51441467.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.a.0.1.$51441467.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.a.0.1.$51441467.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.a.0.1.$51441467.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.a.0.1.$51441467.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.a.0.1.$51441467.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-02-10T12:01:54+00:00" data-datetime="10 Feb 2020" data-reactid=".47x0ykjrrm.1.a.0.1.$51441467.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.a.0.1.$51441467.0.0.1.2.0.0.1.0">10 Feb 2020</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.a.0.1.$51441467.0.0.1.2.0.0.1.1">10 February 2020</span></time></span></div><div class="newsround-promo__comments-signpost newsround-promo__comments-signpost-without-count" data-reactid=".47x0ykjrrm.1.a.0.1.$51441467.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".47x0ykjrrm.1.a.0.1.$51441467.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.a.0.1.$51441467.0.0.1.2.1.0.0"><title data-reactid=".47x0ykjrrm.1.a.0.1.$51441467.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".47x0ykjrrm.1.a.0.1.$51441467.0.0.1.2.1.0.0.1"></path></svg></div></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-3" data-reactid=".47x0ykjrrm.1.a.0.1.$51415843"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_3-22" data-reactid=".47x0ykjrrm.1.a.0.1.$51415843.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/51415843" class="newsround-promo__content newsround-promo__content--purple" data-reactid=".47x0ykjrrm.1.a.0.1.$51415843.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.a.0.1.$51415843.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.a.0.1.$51415843.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/131DD/production/_110810387_netherite.jpg" alt="netherite-block-minecraft." class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.a.0.1.$51415843.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.a.0.1.$51415843.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.a.0.1.$51415843.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.a.0.1.$51415843.0.0.1.0">Minecraft: Is Netherite better than diamonds?!</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.a.0.1.$51415843.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.a.0.1.$51415843.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.a.0.1.$51415843.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.a.0.1.$51415843.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.a.0.1.$51415843.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.a.0.1.$51415843.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.a.0.1.$51415843.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-02-09T08:02:12+00:00" data-datetime="9 Feb 2020" data-reactid=".47x0ykjrrm.1.a.0.1.$51415843.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.a.0.1.$51415843.0.0.1.2.0.0.1.0">9 Feb 2020</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.a.0.1.$51415843.0.0.1.2.0.0.1.1">9 February 2020</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".47x0ykjrrm.1.a.0.1.$51415843.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".47x0ykjrrm.1.a.0.1.$51415843.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.a.0.1.$51415843.0.0.1.2.1.0.0"><title data-reactid=".47x0ykjrrm.1.a.0.1.$51415843.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".47x0ykjrrm.1.a.0.1.$51415843.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".47x0ykjrrm.1.a.0.1.$51415843.0.0.1.2.1.1">55</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-3" data-reactid=".47x0ykjrrm.1.a.0.1.$51387735"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_3-23" data-reactid=".47x0ykjrrm.1.a.0.1.$51387735.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/51387735" class="newsround-promo__content newsround-promo__content--purple" data-reactid=".47x0ykjrrm.1.a.0.1.$51387735.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.a.0.1.$51387735.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.a.0.1.$51387735.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/1A66/production/_110785760_gettyimages-1128681561.jpg" alt="gamer" class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.a.0.1.$51387735.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.a.0.1.$51387735.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.a.0.1.$51387735.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.a.0.1.$51387735.0.0.1.0">Everything you need to know about the Fifa eClub World Cup</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.a.0.1.$51387735.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.a.0.1.$51387735.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.a.0.1.$51387735.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.a.0.1.$51387735.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.a.0.1.$51387735.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.a.0.1.$51387735.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.a.0.1.$51387735.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-02-05T17:00:27+00:00" data-datetime="5 Feb 2020" data-reactid=".47x0ykjrrm.1.a.0.1.$51387735.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.a.0.1.$51387735.0.0.1.2.0.0.1.0">5 Feb 2020</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.a.0.1.$51387735.0.0.1.2.0.0.1.1">5 February 2020</span></time></span></div><div class="newsround-promo__comments-signpost newsround-promo__comments-signpost-without-count" data-reactid=".47x0ykjrrm.1.a.0.1.$51387735.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".47x0ykjrrm.1.a.0.1.$51387735.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.a.0.1.$51387735.0.0.1.2.1.0.0"><title data-reactid=".47x0ykjrrm.1.a.0.1.$51387735.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".47x0ykjrrm.1.a.0.1.$51387735.0.0.1.2.1.0.0.1"></path></svg></div></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-3" data-reactid=".47x0ykjrrm.1.a.0.1.$51368413"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_3-24" data-reactid=".47x0ykjrrm.1.a.0.1.$51368413.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/51368413" class="newsround-promo__content newsround-promo__content--purple" data-reactid=".47x0ykjrrm.1.a.0.1.$51368413.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.a.0.1.$51368413.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.a.0.1.$51368413.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/7A41/production/_104279213_garethbale.jpg" alt="Gareth Bale celebrates scoring in Wales' 4-1 Nations league win over the Republic of Ireland in September" class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.a.0.1.$51368413.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.a.0.1.$51368413.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.a.0.1.$51368413.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.a.0.1.$51368413.0.0.1.0">Gareth Bale has launched an e-sports team</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.a.0.1.$51368413.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.a.0.1.$51368413.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.a.0.1.$51368413.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.a.0.1.$51368413.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.a.0.1.$51368413.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.a.0.1.$51368413.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.a.0.1.$51368413.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-02-04T17:49:53+00:00" data-datetime="4 Feb 2020" data-reactid=".47x0ykjrrm.1.a.0.1.$51368413.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.a.0.1.$51368413.0.0.1.2.0.0.1.0">4 Feb 2020</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.a.0.1.$51368413.0.0.1.2.0.0.1.1">4 February 2020</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".47x0ykjrrm.1.a.0.1.$51368413.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".47x0ykjrrm.1.a.0.1.$51368413.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.a.0.1.$51368413.0.0.1.2.1.0.0"><title data-reactid=".47x0ykjrrm.1.a.0.1.$51368413.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".47x0ykjrrm.1.a.0.1.$51368413.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".47x0ykjrrm.1.a.0.1.$51368413.0.0.1.2.1.1">1</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-3" data-reactid=".47x0ykjrrm.1.a.0.1.$51266123"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_3-25" data-reactid=".47x0ykjrrm.1.a.0.1.$51266123.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/51266123" class="newsround-promo__content newsround-promo__content--purple" data-reactid=".47x0ykjrrm.1.a.0.1.$51266123.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.a.0.1.$51266123.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.a.0.1.$51266123.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/0EE6/production/_109241830_chapter2montage.jpg" alt="fortnite-chapter-2-season-1." class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.a.0.1.$51266123.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.a.0.1.$51266123.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.a.0.1.$51266123.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.a.0.1.$51266123.0.0.1.0">Why is the new season of Fortnite taking so long?</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.a.0.1.$51266123.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.a.0.1.$51266123.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.a.0.1.$51266123.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.a.0.1.$51266123.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.a.0.1.$51266123.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.a.0.1.$51266123.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.a.0.1.$51266123.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-01-27T17:15:28+00:00" data-datetime="27 Jan 2020" data-reactid=".47x0ykjrrm.1.a.0.1.$51266123.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.a.0.1.$51266123.0.0.1.2.0.0.1.0">27 Jan 2020</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.a.0.1.$51266123.0.0.1.2.0.0.1.1">27 January 2020</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".47x0ykjrrm.1.a.0.1.$51266123.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".47x0ykjrrm.1.a.0.1.$51266123.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.a.0.1.$51266123.0.0.1.2.1.0.0"><title data-reactid=".47x0ykjrrm.1.a.0.1.$51266123.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".47x0ykjrrm.1.a.0.1.$51266123.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".47x0ykjrrm.1.a.0.1.$51266123.0.0.1.2.1.1">13</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-3" data-reactid=".47x0ykjrrm.1.a.0.1.$51266124"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_3-26" data-reactid=".47x0ykjrrm.1.a.0.1.$51266124.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/51266124" class="newsround-promo__content newsround-promo__content--purple" data-reactid=".47x0ykjrrm.1.a.0.1.$51266124.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.a.0.1.$51266124.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.a.0.1.$51266124.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/1006E/production/_110664656_twitchyoutube.jpg" alt="twitch-logo-youtube-logo." class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.a.0.1.$51266124.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.a.0.1.$51266124.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.a.0.1.$51266124.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.a.0.1.$51266124.0.0.1.0">Why Overwatch League is ditching Twitch</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.a.0.1.$51266124.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.a.0.1.$51266124.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.a.0.1.$51266124.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.a.0.1.$51266124.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.a.0.1.$51266124.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.a.0.1.$51266124.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.a.0.1.$51266124.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-01-27T14:57:16+00:00" data-datetime="27 Jan 2020" data-reactid=".47x0ykjrrm.1.a.0.1.$51266124.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.a.0.1.$51266124.0.0.1.2.0.0.1.0">27 Jan 2020</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.a.0.1.$51266124.0.0.1.2.0.0.1.1">27 January 2020</span></time></span></div><div class="newsround-promo__comments-signpost newsround-promo__comments-signpost-without-count" data-reactid=".47x0ykjrrm.1.a.0.1.$51266124.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".47x0ykjrrm.1.a.0.1.$51266124.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.a.0.1.$51266124.0.0.1.2.1.0.0"><title data-reactid=".47x0ykjrrm.1.a.0.1.$51266124.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".47x0ykjrrm.1.a.0.1.$51266124.0.0.1.2.1.0.0.1"></path></svg></div></div></div></div></a></div></div></div></div><div class="newsround-more-stories__outer newsround-more-stories__outer--more-stories-3" data-reactid=".47x0ykjrrm.1.a.1"><div class="gs-u-box-size newsround-more-stories__show-more-wrapper newsround-more-stories__show-more-wrapper--more-stories-3" data-reactid=".47x0ykjrrm.1.a.1.0"><div class="newsround-more-stories__show-more newsround-more-stories__show-more--more-stories-3" data-reactid=".47x0ykjrrm.1.a.1.0.0"><div class="newsround-more-stories__show-more-button-container newsround-more-stories__show-more-button-container--more-stories-3" data-reactid=".47x0ykjrrm.1.a.1.0.0.0"><div class="newsround-more-stories__show-more-button" data-reactid=".47x0ykjrrm.1.a.1.0.0.0.0"><button class="newsround-button newsround-button--purple" tabindex="-1" aria-label="Show more stories" data-reactid=".47x0ykjrrm.1.a.1.0.0.0.0.0"><span data-reactid=".47x0ykjrrm.1.a.1.0.0.0.0.0.1">Show more</span></button></div></div></div></div></div></section><section id="more-stories-4" class="newsround-more-stories newsround-more-stories--more-stories-4" data-istats-track-scroll-visibility="nr_home_more_stories_4" data-reactid=".47x0ykjrrm.1.b"><div class="gs-u-box-size newsround-more-stories__wrapper" data-reactid=".47x0ykjrrm.1.b.0"><div class="newsround-more-stories__header" data-reactid=".47x0ykjrrm.1.b.0.0"><div class="newsround-more-stories__header-item" data-reactid=".47x0ykjrrm.1.b.0.0.0"><h2 class="newsround-more-stories__header-title newsround-more-stories__header-title--more-stories-4" data-reactid=".47x0ykjrrm.1.b.0.0.0.0">Quiz-fest</h2></div></div><div class="newsround-more-stories__stories" style="height:478px;" data-reactid=".47x0ykjrrm.1.b.0.1"><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-4" data-reactid=".47x0ykjrrm.1.b.0.1.$47387157"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_4-1" data-reactid=".47x0ykjrrm.1.b.0.1.$47387157.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/47387157" class="newsround-promo__content newsround-promo__content--pink" data-reactid=".47x0ykjrrm.1.b.0.1.$47387157.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.b.0.1.$47387157.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.b.0.1.$47387157.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/6ACE/production/_105824372_marvel.jpg" alt="Image of Marvel characters" class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.b.0.1.$47387157.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.b.0.1.$47387157.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.b.0.1.$47387157.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.b.0.1.$47387157.0.0.1.0">Test your Marvel and DC superhero skills!</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.b.0.1.$47387157.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.b.0.1.$47387157.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.b.0.1.$47387157.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.b.0.1.$47387157.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.b.0.1.$47387157.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.b.0.1.$47387157.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.b.0.1.$47387157.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-14T06:44:14+00:00" data-datetime="14 May 2020" data-reactid=".47x0ykjrrm.1.b.0.1.$47387157.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.b.0.1.$47387157.0.0.1.2.0.0.1.0">14 May 2020</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.b.0.1.$47387157.0.0.1.2.0.0.1.1">14 May 2020</span></time></span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-4" data-reactid=".47x0ykjrrm.1.b.0.1.$52343789"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_4-2" data-reactid=".47x0ykjrrm.1.b.0.1.$52343789.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/52343789" class="newsround-promo__content newsround-promo__content--pink" data-reactid=".47x0ykjrrm.1.b.0.1.$52343789.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.b.0.1.$52343789.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.b.0.1.$52343789.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/12812/production/_111849757_flamingo.jpg" alt="Flamingos" class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.b.0.1.$52343789.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.b.0.1.$52343789.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.b.0.1.$52343789.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.b.0.1.$52343789.0.0.1.0">Which animal are you?</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.b.0.1.$52343789.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.b.0.1.$52343789.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.b.0.1.$52343789.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.b.0.1.$52343789.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.b.0.1.$52343789.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.b.0.1.$52343789.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.b.0.1.$52343789.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-04-21T15:47:49+00:00" data-datetime="21 Apr 2020" data-reactid=".47x0ykjrrm.1.b.0.1.$52343789.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.b.0.1.$52343789.0.0.1.2.0.0.1.0">21 Apr 2020</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.b.0.1.$52343789.0.0.1.2.0.0.1.1">21 April 2020</span></time></span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-4" data-reactid=".47x0ykjrrm.1.b.0.1.$52545218"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_4-3" data-reactid=".47x0ykjrrm.1.b.0.1.$52545218.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/52545218" class="newsround-promo__content newsround-promo__content--pink" data-reactid=".47x0ykjrrm.1.b.0.1.$52545218.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.b.0.1.$52545218.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.b.0.1.$52545218.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/169C7/production/_112151629_gettyimages-1142576725.jpg" alt="cherry-tree" class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.b.0.1.$52545218.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.b.0.1.$52545218.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.b.0.1.$52545218.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.b.0.1.$52545218.0.0.1.0">Can you name the tree?</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.b.0.1.$52545218.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.b.0.1.$52545218.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.b.0.1.$52545218.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.b.0.1.$52545218.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.b.0.1.$52545218.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.b.0.1.$52545218.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.b.0.1.$52545218.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-05T10:32:52+00:00" data-datetime="5 May 2020" data-reactid=".47x0ykjrrm.1.b.0.1.$52545218.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.b.0.1.$52545218.0.0.1.2.0.0.1.0">5 May 2020</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.b.0.1.$52545218.0.0.1.2.0.0.1.1">5 May 2020</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".47x0ykjrrm.1.b.0.1.$52545218.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".47x0ykjrrm.1.b.0.1.$52545218.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.b.0.1.$52545218.0.0.1.2.1.0.0"><title data-reactid=".47x0ykjrrm.1.b.0.1.$52545218.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".47x0ykjrrm.1.b.0.1.$52545218.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".47x0ykjrrm.1.b.0.1.$52545218.0.0.1.2.1.1">41</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-4" data-reactid=".47x0ykjrrm.1.b.0.1.$45576191"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_4-4" data-reactid=".47x0ykjrrm.1.b.0.1.$45576191.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/45576191" class="newsround-promo__content newsround-promo__content--pink" data-reactid=".47x0ykjrrm.1.b.0.1.$45576191.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.b.0.1.$45576191.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.b.0.1.$45576191.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/D579/production/_103494645_katy-p.jpg" alt="Chelsea buns with a celebrity face in the centre." class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.b.0.1.$45576191.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.b.0.1.$45576191.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.b.0.1.$45576191.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.b.0.1.$45576191.0.0.1.0">Quiz: Celebrity Cake Off</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.b.0.1.$45576191.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.b.0.1.$45576191.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.b.0.1.$45576191.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.b.0.1.$45576191.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.b.0.1.$45576191.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.b.0.1.$45576191.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.b.0.1.$45576191.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2018-09-26T08:12:23+00:00" data-datetime="26 Sep 2018" data-reactid=".47x0ykjrrm.1.b.0.1.$45576191.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.b.0.1.$45576191.0.0.1.2.0.0.1.0">26 Sep 2018</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.b.0.1.$45576191.0.0.1.2.0.0.1.1">26 September 2018</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".47x0ykjrrm.1.b.0.1.$45576191.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".47x0ykjrrm.1.b.0.1.$45576191.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.b.0.1.$45576191.0.0.1.2.1.0.0"><title data-reactid=".47x0ykjrrm.1.b.0.1.$45576191.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".47x0ykjrrm.1.b.0.1.$45576191.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".47x0ykjrrm.1.b.0.1.$45576191.0.0.1.2.1.1">13</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-4" data-reactid=".47x0ykjrrm.1.b.0.1.$52527526"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_4-5" data-reactid=".47x0ykjrrm.1.b.0.1.$52527526.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/52527526" class="newsround-promo__content newsround-promo__content--pink" data-reactid=".47x0ykjrrm.1.b.0.1.$52527526.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.b.0.1.$52527526.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.b.0.1.$52527526.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/ED26/production/_112101706_untitled.jpg" alt="Which Star Wars character are you?" class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.b.0.1.$52527526.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.b.0.1.$52527526.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.b.0.1.$52527526.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.b.0.1.$52527526.0.0.1.0">Which Star Wars character are you?</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.b.0.1.$52527526.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.b.0.1.$52527526.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.b.0.1.$52527526.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.b.0.1.$52527526.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.b.0.1.$52527526.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.b.0.1.$52527526.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.b.0.1.$52527526.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-04T07:58:30+00:00" data-datetime="4 May 2020" data-reactid=".47x0ykjrrm.1.b.0.1.$52527526.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.b.0.1.$52527526.0.0.1.2.0.0.1.0">4 May 2020</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.b.0.1.$52527526.0.0.1.2.0.0.1.1">4 May 2020</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".47x0ykjrrm.1.b.0.1.$52527526.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".47x0ykjrrm.1.b.0.1.$52527526.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.b.0.1.$52527526.0.0.1.2.1.0.0"><title data-reactid=".47x0ykjrrm.1.b.0.1.$52527526.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".47x0ykjrrm.1.b.0.1.$52527526.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".47x0ykjrrm.1.b.0.1.$52527526.0.0.1.2.1.1">92</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-4" data-reactid=".47x0ykjrrm.1.b.0.1.$45355679"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_4-6" data-reactid=".47x0ykjrrm.1.b.0.1.$45355679.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/45355679" class="newsround-promo__content newsround-promo__content--pink" data-reactid=".47x0ykjrrm.1.b.0.1.$45355679.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.b.0.1.$45355679.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.b.0.1.$45355679.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/1A06/production/_103226660_claudia-beard.jpg" alt="Female presenter with full beard." class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.b.0.1.$45355679.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.b.0.1.$45355679.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.b.0.1.$45355679.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.b.0.1.$45355679.0.0.1.0">Who's behind the beard?</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.b.0.1.$45355679.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.b.0.1.$45355679.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.b.0.1.$45355679.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.b.0.1.$45355679.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.b.0.1.$45355679.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.b.0.1.$45355679.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.b.0.1.$45355679.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2018-08-30T10:50:57+00:00" data-datetime="30 Aug 2018" data-reactid=".47x0ykjrrm.1.b.0.1.$45355679.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.b.0.1.$45355679.0.0.1.2.0.0.1.0">30 Aug 2018</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.b.0.1.$45355679.0.0.1.2.0.0.1.1">30 August 2018</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".47x0ykjrrm.1.b.0.1.$45355679.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".47x0ykjrrm.1.b.0.1.$45355679.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.b.0.1.$45355679.0.0.1.2.1.0.0"><title data-reactid=".47x0ykjrrm.1.b.0.1.$45355679.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".47x0ykjrrm.1.b.0.1.$45355679.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".47x0ykjrrm.1.b.0.1.$45355679.0.0.1.2.1.1">83</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-4" data-reactid=".47x0ykjrrm.1.b.0.1.$52565132"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_4-7" data-reactid=".47x0ykjrrm.1.b.0.1.$52565132.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/52565132" class="newsround-promo__content newsround-promo__content--pink" data-reactid=".47x0ykjrrm.1.b.0.1.$52565132.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.b.0.1.$52565132.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.b.0.1.$52565132.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/5A39/production/_112179032_moneygetty.jpg" alt="Lots of world bank notes" class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.b.0.1.$52565132.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.b.0.1.$52565132.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.b.0.1.$52565132.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.b.0.1.$52565132.0.0.1.0">Do you know your cash?</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.b.0.1.$52565132.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.b.0.1.$52565132.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.b.0.1.$52565132.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.b.0.1.$52565132.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.b.0.1.$52565132.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.b.0.1.$52565132.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.b.0.1.$52565132.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-07T15:42:12+00:00" data-datetime="7 May 2020" data-reactid=".47x0ykjrrm.1.b.0.1.$52565132.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.b.0.1.$52565132.0.0.1.2.0.0.1.0">7 May 2020</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.b.0.1.$52565132.0.0.1.2.0.0.1.1">7 May 2020</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".47x0ykjrrm.1.b.0.1.$52565132.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".47x0ykjrrm.1.b.0.1.$52565132.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.b.0.1.$52565132.0.0.1.2.1.0.0"><title data-reactid=".47x0ykjrrm.1.b.0.1.$52565132.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".47x0ykjrrm.1.b.0.1.$52565132.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".47x0ykjrrm.1.b.0.1.$52565132.0.0.1.2.1.1">33</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-4" data-reactid=".47x0ykjrrm.1.b.0.1.$52648988"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_4-8" data-reactid=".47x0ykjrrm.1.b.0.1.$52648988.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/52648988" class="newsround-promo__content newsround-promo__content--pink" data-reactid=".47x0ykjrrm.1.b.0.1.$52648988.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.b.0.1.$52648988.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.b.0.1.$52648988.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/374B/production/_112255141_auntitled.jpg" alt="earth in hands" class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.b.0.1.$52648988.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.b.0.1.$52648988.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.b.0.1.$52648988.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.b.0.1.$52648988.0.0.1.0">Quiz: How much do you know about planet Earth?</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.b.0.1.$52648988.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.b.0.1.$52648988.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.b.0.1.$52648988.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.b.0.1.$52648988.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.b.0.1.$52648988.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.b.0.1.$52648988.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.b.0.1.$52648988.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-13T10:59:13+00:00" data-datetime="13 May 2020" data-reactid=".47x0ykjrrm.1.b.0.1.$52648988.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.b.0.1.$52648988.0.0.1.2.0.0.1.0">13 May 2020</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.b.0.1.$52648988.0.0.1.2.0.0.1.1">13 May 2020</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".47x0ykjrrm.1.b.0.1.$52648988.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".47x0ykjrrm.1.b.0.1.$52648988.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.b.0.1.$52648988.0.0.1.2.1.0.0"><title data-reactid=".47x0ykjrrm.1.b.0.1.$52648988.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".47x0ykjrrm.1.b.0.1.$52648988.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".47x0ykjrrm.1.b.0.1.$52648988.0.0.1.2.1.1">7</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-4" data-reactid=".47x0ykjrrm.1.b.0.1.$45435173"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_4-9" data-reactid=".47x0ykjrrm.1.b.0.1.$45435173.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/45435173" class="newsround-promo__content newsround-promo__content--pink" data-reactid=".47x0ykjrrm.1.b.0.1.$45435173.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.b.0.1.$45435173.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.b.0.1.$45435173.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/6AEB/production/_103317372_world-record-index.jpg" alt="Compilation of Guinness World Record holders." class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.b.0.1.$45435173.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.b.0.1.$45435173.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.b.0.1.$45435173.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.b.0.1.$45435173.0.0.1.0">World Records - True or false?</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.b.0.1.$45435173.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.b.0.1.$45435173.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.b.0.1.$45435173.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.b.0.1.$45435173.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.b.0.1.$45435173.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.b.0.1.$45435173.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.b.0.1.$45435173.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2018-09-06T11:09:47+00:00" data-datetime="6 Sep 2018" data-reactid=".47x0ykjrrm.1.b.0.1.$45435173.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.b.0.1.$45435173.0.0.1.2.0.0.1.0">6 Sep 2018</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.b.0.1.$45435173.0.0.1.2.0.0.1.1">6 September 2018</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".47x0ykjrrm.1.b.0.1.$45435173.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".47x0ykjrrm.1.b.0.1.$45435173.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.b.0.1.$45435173.0.0.1.2.1.0.0"><title data-reactid=".47x0ykjrrm.1.b.0.1.$45435173.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".47x0ykjrrm.1.b.0.1.$45435173.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".47x0ykjrrm.1.b.0.1.$45435173.0.0.1.2.1.1">29</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-4" data-reactid=".47x0ykjrrm.1.b.0.1.$52649183"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_4-10" data-reactid=".47x0ykjrrm.1.b.0.1.$52649183.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/52649183" class="newsround-promo__content newsround-promo__content--pink" data-reactid=".47x0ykjrrm.1.b.0.1.$52649183.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.b.0.1.$52649183.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.b.0.1.$52649183.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/148BB/production/_112255148_ra.jpg" alt="celebrity siblings" class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.b.0.1.$52649183.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.b.0.1.$52649183.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.b.0.1.$52649183.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.b.0.1.$52649183.0.0.1.0">Quiz: Guess the celebrity siblings</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.b.0.1.$52649183.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.b.0.1.$52649183.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.b.0.1.$52649183.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.b.0.1.$52649183.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.b.0.1.$52649183.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.b.0.1.$52649183.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.b.0.1.$52649183.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-13T11:06:04+00:00" data-datetime="13 May 2020" data-reactid=".47x0ykjrrm.1.b.0.1.$52649183.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.b.0.1.$52649183.0.0.1.2.0.0.1.0">13 May 2020</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.b.0.1.$52649183.0.0.1.2.0.0.1.1">13 May 2020</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".47x0ykjrrm.1.b.0.1.$52649183.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".47x0ykjrrm.1.b.0.1.$52649183.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.b.0.1.$52649183.0.0.1.2.1.0.0"><title data-reactid=".47x0ykjrrm.1.b.0.1.$52649183.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".47x0ykjrrm.1.b.0.1.$52649183.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".47x0ykjrrm.1.b.0.1.$52649183.0.0.1.2.1.1">6</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-4" data-reactid=".47x0ykjrrm.1.b.0.1.$49766312"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_4-11" data-reactid=".47x0ykjrrm.1.b.0.1.$49766312.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/49766312" class="newsround-promo__content newsround-promo__content--pink" data-reactid=".47x0ykjrrm.1.b.0.1.$49766312.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.b.0.1.$49766312.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.b.0.1.$49766312.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/0933/production/_108855320_get1.jpg" alt="Friends" class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.b.0.1.$49766312.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.b.0.1.$49766312.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.b.0.1.$49766312.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.b.0.1.$49766312.0.0.1.0">How much do you know about Friends?</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.b.0.1.$49766312.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.b.0.1.$49766312.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.b.0.1.$49766312.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.b.0.1.$49766312.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.b.0.1.$49766312.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.b.0.1.$49766312.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.b.0.1.$49766312.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2019-09-21T07:28:07+00:00" data-datetime="21 Sep 2019" data-reactid=".47x0ykjrrm.1.b.0.1.$49766312.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.b.0.1.$49766312.0.0.1.2.0.0.1.0">21 Sep 2019</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.b.0.1.$49766312.0.0.1.2.0.0.1.1">21 September 2019</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".47x0ykjrrm.1.b.0.1.$49766312.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".47x0ykjrrm.1.b.0.1.$49766312.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.b.0.1.$49766312.0.0.1.2.1.0.0"><title data-reactid=".47x0ykjrrm.1.b.0.1.$49766312.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".47x0ykjrrm.1.b.0.1.$49766312.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".47x0ykjrrm.1.b.0.1.$49766312.0.0.1.2.1.1">14</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-4" data-reactid=".47x0ykjrrm.1.b.0.1.$45861154"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_4-12" data-reactid=".47x0ykjrrm.1.b.0.1.$45861154.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/45861154" class="newsround-promo__content newsround-promo__content--pink" data-reactid=".47x0ykjrrm.1.b.0.1.$45861154.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.b.0.1.$45861154.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.b.0.1.$45861154.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/BBD6/production/_103868084_newsround-royal-baby-title.jpg" alt="Pictures of royal babies" class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.b.0.1.$45861154.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.b.0.1.$45861154.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.b.0.1.$45861154.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.b.0.1.$45861154.0.0.1.0">Can you guess the royal baby?</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.b.0.1.$45861154.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.b.0.1.$45861154.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.b.0.1.$45861154.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.b.0.1.$45861154.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.b.0.1.$45861154.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.b.0.1.$45861154.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.b.0.1.$45861154.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2019-09-26T08:48:08+00:00" data-datetime="26 Sep 2019" data-reactid=".47x0ykjrrm.1.b.0.1.$45861154.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.b.0.1.$45861154.0.0.1.2.0.0.1.0">26 Sep 2019</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.b.0.1.$45861154.0.0.1.2.0.0.1.1">26 September 2019</span></time></span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-4" data-reactid=".47x0ykjrrm.1.b.0.1.$46103360"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_4-13" data-reactid=".47x0ykjrrm.1.b.0.1.$46103360.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/46103360" class="newsround-promo__content newsround-promo__content--pink" data-reactid=".47x0ykjrrm.1.b.0.1.$46103360.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.b.0.1.$46103360.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.b.0.1.$46103360.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/95EA/production/_104187383_trumpandbarack.jpg" alt="President Trump and President Obama" class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.b.0.1.$46103360.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.b.0.1.$46103360.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.b.0.1.$46103360.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.b.0.1.$46103360.0.0.1.0">How well do you know your US presidents?</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.b.0.1.$46103360.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.b.0.1.$46103360.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.b.0.1.$46103360.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.b.0.1.$46103360.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.b.0.1.$46103360.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.b.0.1.$46103360.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.b.0.1.$46103360.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2018-11-06T08:24:41+00:00" data-datetime="6 Nov 2018" data-reactid=".47x0ykjrrm.1.b.0.1.$46103360.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.b.0.1.$46103360.0.0.1.2.0.0.1.0">6 Nov 2018</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.b.0.1.$46103360.0.0.1.2.0.0.1.1">6 November 2018</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".47x0ykjrrm.1.b.0.1.$46103360.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".47x0ykjrrm.1.b.0.1.$46103360.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.b.0.1.$46103360.0.0.1.2.1.0.0"><title data-reactid=".47x0ykjrrm.1.b.0.1.$46103360.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".47x0ykjrrm.1.b.0.1.$46103360.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".47x0ykjrrm.1.b.0.1.$46103360.0.0.1.2.1.1">1</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-4" data-reactid=".47x0ykjrrm.1.b.0.1.$45024727"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_4-14" data-reactid=".47x0ykjrrm.1.b.0.1.$45024727.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/45024727" class="newsround-promo__content newsround-promo__content--pink" data-reactid=".47x0ykjrrm.1.b.0.1.$45024727.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.b.0.1.$45024727.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.b.0.1.$45024727.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/162E9/production/_102775809_harry.jpg" alt="Harry Potter and his owl" class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.b.0.1.$45024727.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.b.0.1.$45024727.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.b.0.1.$45024727.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.b.0.1.$45024727.0.0.1.0">Which Harry Potter family do you belong to?</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.b.0.1.$45024727.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.b.0.1.$45024727.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.b.0.1.$45024727.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.b.0.1.$45024727.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.b.0.1.$45024727.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.b.0.1.$45024727.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.b.0.1.$45024727.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2018-07-31T16:02:57+00:00" data-datetime="31 Jul 2018" data-reactid=".47x0ykjrrm.1.b.0.1.$45024727.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.b.0.1.$45024727.0.0.1.2.0.0.1.0">31 Jul 2018</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.b.0.1.$45024727.0.0.1.2.0.0.1.1">31 July 2018</span></time></span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-4" data-reactid=".47x0ykjrrm.1.b.0.1.$48768960"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_4-15" data-reactid=".47x0ykjrrm.1.b.0.1.$48768960.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/48768960" class="newsround-promo__content newsround-promo__content--pink" data-reactid=".47x0ykjrrm.1.b.0.1.$48768960.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.b.0.1.$48768960.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.b.0.1.$48768960.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/181FE/production/_107541889_sports.jpg" alt="variety-of-sports." class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.b.0.1.$48768960.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.b.0.1.$48768960.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.b.0.1.$48768960.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.b.0.1.$48768960.0.0.1.0">Which of these sports aren't in the Olympics?</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.b.0.1.$48768960.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.b.0.1.$48768960.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.b.0.1.$48768960.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.b.0.1.$48768960.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.b.0.1.$48768960.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.b.0.1.$48768960.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.b.0.1.$48768960.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2019-06-26T06:21:26+00:00" data-datetime="26 Jun 2019" data-reactid=".47x0ykjrrm.1.b.0.1.$48768960.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.b.0.1.$48768960.0.0.1.2.0.0.1.0">26 Jun 2019</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.b.0.1.$48768960.0.0.1.2.0.0.1.1">26 June 2019</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".47x0ykjrrm.1.b.0.1.$48768960.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".47x0ykjrrm.1.b.0.1.$48768960.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.b.0.1.$48768960.0.0.1.2.1.0.0"><title data-reactid=".47x0ykjrrm.1.b.0.1.$48768960.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".47x0ykjrrm.1.b.0.1.$48768960.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".47x0ykjrrm.1.b.0.1.$48768960.0.0.1.2.1.1">2</span></div></div></div></a></div></div></div></div><div class="newsround-more-stories__outer newsround-more-stories__outer--more-stories-4" data-reactid=".47x0ykjrrm.1.b.1"><div class="gs-u-box-size newsround-more-stories__show-more-wrapper newsround-more-stories__show-more-wrapper--more-stories-4" data-reactid=".47x0ykjrrm.1.b.1.0"><div class="newsround-more-stories__show-more newsround-more-stories__show-more--more-stories-4" data-reactid=".47x0ykjrrm.1.b.1.0.0"><div class="newsround-more-stories__show-more-button-container newsround-more-stories__show-more-button-container--more-stories-4" data-reactid=".47x0ykjrrm.1.b.1.0.0.0"><div class="newsround-more-stories__show-more-button" data-reactid=".47x0ykjrrm.1.b.1.0.0.0.0"><button class="newsround-button newsround-button--pink" tabindex="-1" aria-label="Show more stories" data-reactid=".47x0ykjrrm.1.b.1.0.0.0.0.0"><span data-reactid=".47x0ykjrrm.1.b.1.0.0.0.0.0.1">Show more</span></button></div></div></div></div></div></section><section id="more-stories-5" class="newsround-more-stories newsround-more-stories--more-stories-5" data-istats-track-scroll-visibility="nr_home_more_stories_5" data-reactid=".47x0ykjrrm.1.c"><div class="gs-u-box-size newsround-more-stories__wrapper" data-reactid=".47x0ykjrrm.1.c.0"><div class="newsround-more-stories__header" data-reactid=".47x0ykjrrm.1.c.0.0"><div class="newsround-more-stories__header-item" data-reactid=".47x0ykjrrm.1.c.0.0.0"><h2 class="newsround-more-stories__header-title newsround-more-stories__header-title--more-stories-5" data-reactid=".47x0ykjrrm.1.c.0.0.0.0">Newsround Learn</h2></div></div><div class="newsround-more-stories__stories" style="height:478px;" data-reactid=".47x0ykjrrm.1.c.0.1"><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-5" data-reactid=".47x0ykjrrm.1.c.0.1.$51118364"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_5-1" data-reactid=".47x0ykjrrm.1.c.0.1.$51118364.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/51118364" class="newsround-promo__content newsround-promo__content--teal" data-reactid=".47x0ykjrrm.1.c.0.1.$51118364.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.c.0.1.$51118364.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.c.0.1.$51118364.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/4453/production/_110519471_teacher1_getty.jpg" alt="Teacher and children in a school classroom" class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.c.0.1.$51118364.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.c.0.1.$51118364.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.c.0.1.$51118364.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.c.0.1.$51118364.0.0.1.0">Welcome to Newsround Teachers</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.c.0.1.$51118364.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.c.0.1.$51118364.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.c.0.1.$51118364.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.c.0.1.$51118364.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.c.0.1.$51118364.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.c.0.1.$51118364.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.c.0.1.$51118364.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-01-15T13:50:19+00:00" data-datetime="15 Jan 2020" data-reactid=".47x0ykjrrm.1.c.0.1.$51118364.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.c.0.1.$51118364.0.0.1.2.0.0.1.0">15 Jan 2020</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.c.0.1.$51118364.0.0.1.2.0.0.1.1">15 January 2020</span></time></span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-5" data-reactid=".47x0ykjrrm.1.c.0.1.$51723696"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_5-2" data-reactid=".47x0ykjrrm.1.c.0.1.$51723696.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/51723696" class="newsround-promo__content newsround-promo__content--teal" data-reactid=".47x0ykjrrm.1.c.0.1.$51723696.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.c.0.1.$51723696.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.c.0.1.$51723696.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/11EF5/production/_111116437_p07m5qmk.jpg" alt="newsround" class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.c.0.1.$51723696.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.c.0.1.$51723696.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.c.0.1.$51723696.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.c.0.1.$51723696.0.0.1.0">Newsround: Our big stories this week</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.c.0.1.$51723696.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.c.0.1.$51723696.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.c.0.1.$51723696.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.c.0.1.$51723696.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.c.0.1.$51723696.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.c.0.1.$51723696.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.c.0.1.$51723696.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-26T10:15:18+00:00" data-datetime="5 days ago" data-reactid=".47x0ykjrrm.1.c.0.1.$51723696.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.c.0.1.$51723696.0.0.1.2.0.0.1.0">5 days ago</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.c.0.1.$51723696.0.0.1.2.0.0.1.1">5 days ago</span></time></span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-5" data-reactid=".47x0ykjrrm.1.c.0.1.$51836693"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_5-3" data-reactid=".47x0ykjrrm.1.c.0.1.$51836693.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/51836693" class="newsround-promo__content newsround-promo__content--teal" data-reactid=".47x0ykjrrm.1.c.0.1.$51836693.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.c.0.1.$51836693.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.c.0.1.$51836693.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/70AA/production/_111224882_titlepage.png" alt="Big Stories and big words" class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.c.0.1.$51836693.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.c.0.1.$51836693.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.c.0.1.$51836693.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.c.0.1.$51836693.0.0.1.0">Newsround Worksheet: Headlines and glossary</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.c.0.1.$51836693.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.c.0.1.$51836693.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.c.0.1.$51836693.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.c.0.1.$51836693.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.c.0.1.$51836693.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.c.0.1.$51836693.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.c.0.1.$51836693.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-26T10:07:13+00:00" data-datetime="5 days ago" data-reactid=".47x0ykjrrm.1.c.0.1.$51836693.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.c.0.1.$51836693.0.0.1.2.0.0.1.0">5 days ago</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.c.0.1.$51836693.0.0.1.2.0.0.1.1">5 days ago</span></time></span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-5" data-reactid=".47x0ykjrrm.1.c.0.1.$52712926"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_5-4" data-reactid=".47x0ykjrrm.1.c.0.1.$52712926.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/52712926" class="newsround-promo__content newsround-promo__content--teal" data-reactid=".47x0ykjrrm.1.c.0.1.$52712926.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.c.0.1.$52712926.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.c.0.1.$52712926.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/11797/production/_112357517_anrteachers_3-1.jpg" alt="climate" class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.c.0.1.$52712926.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.c.0.1.$52712926.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.c.0.1.$52712926.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.c.0.1.$52712926.0.0.1.0">Newsround topics: Climate change and pollution</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.c.0.1.$52712926.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.c.0.1.$52712926.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.c.0.1.$52712926.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.c.0.1.$52712926.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.c.0.1.$52712926.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.c.0.1.$52712926.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.c.0.1.$52712926.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-19T11:53:05+00:00" data-datetime="19 May 2020" data-reactid=".47x0ykjrrm.1.c.0.1.$52712926.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.c.0.1.$52712926.0.0.1.2.0.0.1.0">19 May 2020</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.c.0.1.$52712926.0.0.1.2.0.0.1.1">19 May 2020</span></time></span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-5" data-reactid=".47x0ykjrrm.1.c.0.1.$52720395"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_5-5" data-reactid=".47x0ykjrrm.1.c.0.1.$52720395.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/52720395" class="newsround-promo__content newsround-promo__content--teal" data-reactid=".47x0ykjrrm.1.c.0.1.$52720395.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.c.0.1.$52720395.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.c.0.1.$52720395.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/2E63/production/_112357811_nrteachers_6.jpg" alt="history" class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.c.0.1.$52720395.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.c.0.1.$52720395.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.c.0.1.$52720395.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.c.0.1.$52720395.0.0.1.0">Newsround topics: People and events from history</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.c.0.1.$52720395.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.c.0.1.$52720395.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.c.0.1.$52720395.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.c.0.1.$52720395.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.c.0.1.$52720395.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.c.0.1.$52720395.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.c.0.1.$52720395.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-19T14:50:26+00:00" data-datetime="19 May 2020" data-reactid=".47x0ykjrrm.1.c.0.1.$52720395.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.c.0.1.$52720395.0.0.1.2.0.0.1.0">19 May 2020</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.c.0.1.$52720395.0.0.1.2.0.0.1.1">19 May 2020</span></time></span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-5" data-reactid=".47x0ykjrrm.1.c.0.1.$52712121"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_5-6" data-reactid=".47x0ykjrrm.1.c.0.1.$52712121.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/52712121" class="newsround-promo__content newsround-promo__content--teal" data-reactid=".47x0ykjrrm.1.c.0.1.$52712121.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.c.0.1.$52712121.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.c.0.1.$52712121.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/05C3/production/_112357410_anrteachers_3.jpg" alt="space" class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.c.0.1.$52712121.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.c.0.1.$52712121.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.c.0.1.$52712121.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.c.0.1.$52712121.0.0.1.0">Newsround topics: Space, astronauts and planets</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.c.0.1.$52712121.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.c.0.1.$52712121.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.c.0.1.$52712121.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.c.0.1.$52712121.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.c.0.1.$52712121.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.c.0.1.$52712121.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.c.0.1.$52712121.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-19T14:48:55+00:00" data-datetime="19 May 2020" data-reactid=".47x0ykjrrm.1.c.0.1.$52712121.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.c.0.1.$52712121.0.0.1.2.0.0.1.0">19 May 2020</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.c.0.1.$52712121.0.0.1.2.0.0.1.1">19 May 2020</span></time></span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-5" data-reactid=".47x0ykjrrm.1.c.0.1.$52713537"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_5-7" data-reactid=".47x0ykjrrm.1.c.0.1.$52713537.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/52713537" class="newsround-promo__content newsround-promo__content--teal" data-reactid=".47x0ykjrrm.1.c.0.1.$52713537.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.c.0.1.$52713537.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.c.0.1.$52713537.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/AB63/production/_112357834_nrteachers_7.jpg" alt="nature" class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.c.0.1.$52713537.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.c.0.1.$52713537.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.c.0.1.$52713537.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.c.0.1.$52713537.0.0.1.0">Newsround topics: The Natural World</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.c.0.1.$52713537.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.c.0.1.$52713537.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.c.0.1.$52713537.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.c.0.1.$52713537.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.c.0.1.$52713537.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.c.0.1.$52713537.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.c.0.1.$52713537.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-19T14:47:04+00:00" data-datetime="19 May 2020" data-reactid=".47x0ykjrrm.1.c.0.1.$52713537.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.c.0.1.$52713537.0.0.1.2.0.0.1.0">19 May 2020</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.c.0.1.$52713537.0.0.1.2.0.0.1.1">19 May 2020</span></time></span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-5" data-reactid=".47x0ykjrrm.1.c.0.1.$52713333"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_5-8" data-reactid=".47x0ykjrrm.1.c.0.1.$52713333.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/52713333" class="newsround-promo__content newsround-promo__content--teal" data-reactid=".47x0ykjrrm.1.c.0.1.$52713333.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.c.0.1.$52713333.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.c.0.1.$52713333.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/0A0F/production/_112357520_anrteachers_4-1.jpg" alt="Mental health" class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.c.0.1.$52713333.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.c.0.1.$52713333.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.c.0.1.$52713333.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.c.0.1.$52713333.0.0.1.0">Newsround topics: PSHE and Mental Health</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.c.0.1.$52713333.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.c.0.1.$52713333.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.c.0.1.$52713333.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.c.0.1.$52713333.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.c.0.1.$52713333.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.c.0.1.$52713333.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.c.0.1.$52713333.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-19T13:45:30+00:00" data-datetime="19 May 2020" data-reactid=".47x0ykjrrm.1.c.0.1.$52713333.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.c.0.1.$52713333.0.0.1.2.0.0.1.0">19 May 2020</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.c.0.1.$52713333.0.0.1.2.0.0.1.1">19 May 2020</span></time></span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-5" data-reactid=".47x0ykjrrm.1.c.0.1.$51826298"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_5-9" data-reactid=".47x0ykjrrm.1.c.0.1.$51826298.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/51826298" class="newsround-promo__content newsround-promo__content--teal" data-reactid=".47x0ykjrrm.1.c.0.1.$51826298.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.c.0.1.$51826298.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.c.0.1.$51826298.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/9BD3/production/_111219893_youngreporter2.jpg" alt="Young-reporter-pic" class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.c.0.1.$51826298.0.0.0.0.0"/></div><span class="newsround-promo__promolabel newsround-promo__promolabel--teal newsround-promo__promolabel--duration" data-reactid=".47x0ykjrrm.1.c.0.1.$51826298.0.0.0.1"><div class="gel-icon gel-icon--play newsround-promo__icon" data-reactid=".47x0ykjrrm.1.c.0.1.$51826298.0.0.0.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.c.0.1.$51826298.0.0.0.1.0.0"><title data-reactid=".47x0ykjrrm.1.c.0.1.$51826298.0.0.0.1.0.0.0">play</title><path d="M3 32l26-16L3 0v32z" data-reactid=".47x0ykjrrm.1.c.0.1.$51826298.0.0.0.1.0.0.1"></path></svg></div><span class="duration" data-reactid=".47x0ykjrrm.1.c.0.1.$51826298.0.0.0.1.1">1:31</span></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.c.0.1.$51826298.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.c.0.1.$51826298.0.0.1.0">The girl campaigning for more diversity in books</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.c.0.1.$51826298.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.c.0.1.$51826298.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.c.0.1.$51826298.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.c.0.1.$51826298.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.c.0.1.$51826298.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.c.0.1.$51826298.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.c.0.1.$51826298.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-03-11T06:52:05+00:00" data-datetime="11 Mar 2020" data-reactid=".47x0ykjrrm.1.c.0.1.$51826298.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.c.0.1.$51826298.0.0.1.2.0.0.1.0">11 Mar 2020</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.c.0.1.$51826298.0.0.1.2.0.0.1.1">11 March 2020</span></time></span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-5" data-reactid=".47x0ykjrrm.1.c.0.1.$51644659"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_5-10" data-reactid=".47x0ykjrrm.1.c.0.1.$51644659.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/51644659" class="newsround-promo__content newsround-promo__content--teal" data-reactid=".47x0ykjrrm.1.c.0.1.$51644659.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.c.0.1.$51644659.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.c.0.1.$51644659.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/1CFE/production/_111122470_laverne_antrobus.jpg" alt="Laverne antrobus tips" class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.c.0.1.$51644659.0.0.0.0.0"/></div><span class="newsround-promo__promolabel newsround-promo__promolabel--teal newsround-promo__promolabel--duration" data-reactid=".47x0ykjrrm.1.c.0.1.$51644659.0.0.0.1"><div class="gel-icon gel-icon--play newsround-promo__icon" data-reactid=".47x0ykjrrm.1.c.0.1.$51644659.0.0.0.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.c.0.1.$51644659.0.0.0.1.0.0"><title data-reactid=".47x0ykjrrm.1.c.0.1.$51644659.0.0.0.1.0.0.0">play</title><path d="M3 32l26-16L3 0v32z" data-reactid=".47x0ykjrrm.1.c.0.1.$51644659.0.0.0.1.0.0.1"></path></svg></div><span class="duration" data-reactid=".47x0ykjrrm.1.c.0.1.$51644659.0.0.0.1.1">0:56</span></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.c.0.1.$51644659.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.c.0.1.$51644659.0.0.1.0">Five tips if you're feeling worried about climate change</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.c.0.1.$51644659.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.c.0.1.$51644659.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.c.0.1.$51644659.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.c.0.1.$51644659.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.c.0.1.$51644659.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.c.0.1.$51644659.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.c.0.1.$51644659.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-03-03T06:41:35+00:00" data-datetime="3 Mar 2020" data-reactid=".47x0ykjrrm.1.c.0.1.$51644659.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.c.0.1.$51644659.0.0.1.2.0.0.1.0">3 Mar 2020</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.c.0.1.$51644659.0.0.1.2.0.0.1.1">3 March 2020</span></time></span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-5" data-reactid=".47x0ykjrrm.1.c.0.1.$52410744"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_5-11" data-reactid=".47x0ykjrrm.1.c.0.1.$52410744.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/52410744" class="newsround-promo__content newsround-promo__content--teal" data-reactid=".47x0ykjrrm.1.c.0.1.$52410744.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.c.0.1.$52410744.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.c.0.1.$52410744.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/EE95/production/_111977016_titlepage_still_00513.jpg" alt="Koala-and-firefighter-title-page." class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.c.0.1.$52410744.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.c.0.1.$52410744.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.c.0.1.$52410744.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.c.0.1.$52410744.0.0.1.0">Australia: Life after the bushfires</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.c.0.1.$52410744.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.c.0.1.$52410744.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.c.0.1.$52410744.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.c.0.1.$52410744.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.c.0.1.$52410744.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.c.0.1.$52410744.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.c.0.1.$52410744.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-04-28T05:30:00+00:00" data-datetime="28 Apr 2020" data-reactid=".47x0ykjrrm.1.c.0.1.$52410744.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.c.0.1.$52410744.0.0.1.2.0.0.1.0">28 Apr 2020</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.c.0.1.$52410744.0.0.1.2.0.0.1.1">28 April 2020</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".47x0ykjrrm.1.c.0.1.$52410744.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".47x0ykjrrm.1.c.0.1.$52410744.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.c.0.1.$52410744.0.0.1.2.1.0.0"><title data-reactid=".47x0ykjrrm.1.c.0.1.$52410744.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".47x0ykjrrm.1.c.0.1.$52410744.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".47x0ykjrrm.1.c.0.1.$52410744.0.0.1.2.1.1">23</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-5" data-reactid=".47x0ykjrrm.1.c.0.1.$51388287"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_5-12" data-reactid=".47x0ykjrrm.1.c.0.1.$51388287.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/51388287" class="newsround-promo__content newsround-promo__content--teal" data-reactid=".47x0ykjrrm.1.c.0.1.$51388287.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.c.0.1.$51388287.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.c.0.1.$51388287.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/93B9/production/_111371873_gettyimages-1097731282.jpg" alt="climate-change-renewable-energy-graphic." class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.c.0.1.$51388287.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.c.0.1.$51388287.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.c.0.1.$51388287.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.c.0.1.$51388287.0.0.1.0">Five epic inventions fighting climate change</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.c.0.1.$51388287.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.c.0.1.$51388287.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.c.0.1.$51388287.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.c.0.1.$51388287.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.c.0.1.$51388287.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.c.0.1.$51388287.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.c.0.1.$51388287.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-04-22T05:45:16+00:00" data-datetime="22 Apr 2020" data-reactid=".47x0ykjrrm.1.c.0.1.$51388287.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.c.0.1.$51388287.0.0.1.2.0.0.1.0">22 Apr 2020</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.c.0.1.$51388287.0.0.1.2.0.0.1.1">22 April 2020</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".47x0ykjrrm.1.c.0.1.$51388287.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".47x0ykjrrm.1.c.0.1.$51388287.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.c.0.1.$51388287.0.0.1.2.1.0.0"><title data-reactid=".47x0ykjrrm.1.c.0.1.$51388287.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".47x0ykjrrm.1.c.0.1.$51388287.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".47x0ykjrrm.1.c.0.1.$51388287.0.0.1.2.1.1">7</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-5" data-reactid=".47x0ykjrrm.1.c.0.1.$48201749"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_5-13" data-reactid=".47x0ykjrrm.1.c.0.1.$48201749.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/48201749" class="newsround-promo__content newsround-promo__content--teal" data-reactid=".47x0ykjrrm.1.c.0.1.$48201749.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.c.0.1.$48201749.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.c.0.1.$48201749.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/6895/production/_106837762_1.jpg" alt="crowds-celebrating-VE-day." class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.c.0.1.$48201749.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.c.0.1.$48201749.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.c.0.1.$48201749.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.c.0.1.$48201749.0.0.1.0">What is VE Day?</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.c.0.1.$48201749.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.c.0.1.$48201749.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.c.0.1.$48201749.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.c.0.1.$48201749.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.c.0.1.$48201749.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.c.0.1.$48201749.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.c.0.1.$48201749.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-05-08T07:46:38+00:00" data-datetime="8 May 2020" data-reactid=".47x0ykjrrm.1.c.0.1.$48201749.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.c.0.1.$48201749.0.0.1.2.0.0.1.0">8 May 2020</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.c.0.1.$48201749.0.0.1.2.0.0.1.1">8 May 2020</span></time></span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-5" data-reactid=".47x0ykjrrm.1.c.0.1.$51403096"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_5-14" data-reactid=".47x0ykjrrm.1.c.0.1.$51403096.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/51403096" class="newsround-promo__content newsround-promo__content--teal" data-reactid=".47x0ykjrrm.1.c.0.1.$51403096.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.c.0.1.$51403096.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.c.0.1.$51403096.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/6180/production/_110806942_p082hykf.jpg" alt="inside-my-head-taking-control-of-my-anxiety-a-newsround-special" class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.c.0.1.$51403096.0.0.0.0.0"/></div><span class="newsround-promo__promolabel newsround-promo__promolabel--teal newsround-promo__promolabel--duration" data-reactid=".47x0ykjrrm.1.c.0.1.$51403096.0.0.0.1"><div class="gel-icon gel-icon--play newsround-promo__icon" data-reactid=".47x0ykjrrm.1.c.0.1.$51403096.0.0.0.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.c.0.1.$51403096.0.0.0.1.0.0"><title data-reactid=".47x0ykjrrm.1.c.0.1.$51403096.0.0.0.1.0.0.0">play</title><path d="M3 32l26-16L3 0v32z" data-reactid=".47x0ykjrrm.1.c.0.1.$51403096.0.0.0.1.0.0.1"></path></svg></div><span class="duration" data-reactid=".47x0ykjrrm.1.c.0.1.$51403096.0.0.0.1.1">27:54</span></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.c.0.1.$51403096.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.c.0.1.$51403096.0.0.1.0">Inside My Head: Taking Control of My Anxiety</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.c.0.1.$51403096.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.c.0.1.$51403096.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.c.0.1.$51403096.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.c.0.1.$51403096.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.c.0.1.$51403096.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.c.0.1.$51403096.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.c.0.1.$51403096.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-02-07T09:39:52+00:00" data-datetime="7 Feb 2020" data-reactid=".47x0ykjrrm.1.c.0.1.$51403096.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.c.0.1.$51403096.0.0.1.2.0.0.1.0">7 Feb 2020</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.c.0.1.$51403096.0.0.1.2.0.0.1.1">7 February 2020</span></time></span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-5" data-reactid=".47x0ykjrrm.1.c.0.1.$42810179"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_5-15" data-reactid=".47x0ykjrrm.1.c.0.1.$42810179.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/42810179" class="newsround-promo__content newsround-promo__content--teal" data-reactid=".47x0ykjrrm.1.c.0.1.$42810179.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.c.0.1.$42810179.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.c.0.1.$42810179.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/13DDA/production/_102207318_mediaitem102207317.jpg" alt="A single discarded plastic water bottle on a sandy beach" class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.c.0.1.$42810179.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.c.0.1.$42810179.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.c.0.1.$42810179.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.c.0.1.$42810179.0.0.1.0">Guide: Why is plastic a problem?</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.c.0.1.$42810179.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.c.0.1.$42810179.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.c.0.1.$42810179.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.c.0.1.$42810179.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.c.0.1.$42810179.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.c.0.1.$42810179.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.c.0.1.$42810179.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2020-03-17T15:15:56+00:00" data-datetime="17 Mar 2020" data-reactid=".47x0ykjrrm.1.c.0.1.$42810179.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.c.0.1.$42810179.0.0.1.2.0.0.1.0">17 Mar 2020</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.c.0.1.$42810179.0.0.1.2.0.0.1.1">17 March 2020</span></time></span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-5" data-reactid=".47x0ykjrrm.1.c.0.1.$48352689"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_5-16" data-reactid=".47x0ykjrrm.1.c.0.1.$48352689.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/48352689" class="newsround-promo__content newsround-promo__content--teal" data-reactid=".47x0ykjrrm.1.c.0.1.$48352689.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.c.0.1.$48352689.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.c.0.1.$48352689.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/2037/production/_107074280_trumpindex.jpg" alt="trump-wall" class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.c.0.1.$48352689.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.c.0.1.$48352689.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.c.0.1.$48352689.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.c.0.1.$48352689.0.0.1.0">Living with the wall: A Newsround special</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.c.0.1.$48352689.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.c.0.1.$48352689.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.c.0.1.$48352689.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.c.0.1.$48352689.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.c.0.1.$48352689.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.c.0.1.$48352689.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.c.0.1.$48352689.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2019-06-04T06:04:16+00:00" data-datetime="4 Jun 2019" data-reactid=".47x0ykjrrm.1.c.0.1.$48352689.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.c.0.1.$48352689.0.0.1.2.0.0.1.0">4 Jun 2019</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.c.0.1.$48352689.0.0.1.2.0.0.1.1">4 June 2019</span></time></span></div><div class="newsround-promo__comments-signpost " data-reactid=".47x0ykjrrm.1.c.0.1.$48352689.0.0.1.2.1"><div class="gel-icon gel-icon--comments newsround-promo__comments" data-reactid=".47x0ykjrrm.1.c.0.1.$48352689.0.0.1.2.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.c.0.1.$48352689.0.0.1.2.1.0.0"><title data-reactid=".47x0ykjrrm.1.c.0.1.$48352689.0.0.1.2.1.0.0.0">comments</title><path d="M0 0v32l8-8h24V0zm4 10h18v4H4zm24 10H4v-4h24zm0-12H4V4h24z" data-reactid=".47x0ykjrrm.1.c.0.1.$48352689.0.0.1.2.1.0.0.1"></path></svg></div><span class="newsround-promo__comments-count" id="newsround-promo__comments-count" data-reactid=".47x0ykjrrm.1.c.0.1.$48352689.0.0.1.2.1.1">4</span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-5" data-reactid=".47x0ykjrrm.1.c.0.1.$25036313"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_5-17" data-reactid=".47x0ykjrrm.1.c.0.1.$25036313.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/25036313" class="newsround-promo__content newsround-promo__content--teal" data-reactid=".47x0ykjrrm.1.c.0.1.$25036313.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.c.0.1.$25036313.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.c.0.1.$25036313.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/7427/production/_92653792_anxiety.jpg" alt="Cartoon" class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.c.0.1.$25036313.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.c.0.1.$25036313.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.c.0.1.$25036313.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.c.0.1.$25036313.0.0.1.0">What is anxiety?</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.c.0.1.$25036313.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.c.0.1.$25036313.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.c.0.1.$25036313.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.c.0.1.$25036313.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.c.0.1.$25036313.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.c.0.1.$25036313.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.c.0.1.$25036313.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2019-02-15T07:11:23+00:00" data-datetime="15 Feb 2019" data-reactid=".47x0ykjrrm.1.c.0.1.$25036313.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.c.0.1.$25036313.0.0.1.2.0.0.1.0">15 Feb 2019</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.c.0.1.$25036313.0.0.1.2.0.0.1.1">15 February 2019</span></time></span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-5" data-reactid=".47x0ykjrrm.1.c.0.1.$49997791"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_5-18" data-reactid=".47x0ykjrrm.1.c.0.1.$49997791.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/49997791" class="newsround-promo__content newsround-promo__content--teal" data-reactid=".47x0ykjrrm.1.c.0.1.$49997791.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.c.0.1.$49997791.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.c.0.1.$49997791.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/6273/production/_95330252_whatismentalhealth.jpg" alt="mental-health-problem-graphic." class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.c.0.1.$49997791.0.0.0.0.0"/></div><span data-reactid=".47x0ykjrrm.1.c.0.1.$49997791.0.0.0.1"></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.c.0.1.$49997791.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.c.0.1.$49997791.0.0.1.0">What is a mental health problem?</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.c.0.1.$49997791.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.c.0.1.$49997791.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.c.0.1.$49997791.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.c.0.1.$49997791.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.c.0.1.$49997791.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.c.0.1.$49997791.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.c.0.1.$49997791.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2019-10-10T10:23:16+00:00" data-datetime="10 Oct 2019" data-reactid=".47x0ykjrrm.1.c.0.1.$49997791.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.c.0.1.$49997791.0.0.1.2.0.0.1.0">10 Oct 2019</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.c.0.1.$49997791.0.0.1.2.0.0.1.1">10 October 2019</span></time></span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-5" data-reactid=".47x0ykjrrm.1.c.0.1.$44503109"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_5-19" data-reactid=".47x0ykjrrm.1.c.0.1.$44503109.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/44503109" class="newsround-promo__content newsround-promo__content--teal" data-reactid=".47x0ykjrrm.1.c.0.1.$44503109.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.c.0.1.$44503109.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.c.0.1.$44503109.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/617A/production/_103645942_windrush-index.jpg" alt="Maya in a blue top, Levi in a red top, both smiling at the camera." class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.c.0.1.$44503109.0.0.0.0.0"/></div><span class="newsround-promo__promolabel newsround-promo__promolabel--teal newsround-promo__promolabel--duration" data-reactid=".47x0ykjrrm.1.c.0.1.$44503109.0.0.0.1"><div class="gel-icon gel-icon--play newsround-promo__icon" data-reactid=".47x0ykjrrm.1.c.0.1.$44503109.0.0.0.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.c.0.1.$44503109.0.0.0.1.0.0"><title data-reactid=".47x0ykjrrm.1.c.0.1.$44503109.0.0.0.1.0.0.0">play</title><path d="M3 32l26-16L3 0v32z" data-reactid=".47x0ykjrrm.1.c.0.1.$44503109.0.0.0.1.0.0.1"></path></svg></div><span class="duration" data-reactid=".47x0ykjrrm.1.c.0.1.$44503109.0.0.0.1.1">27:19</span></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.c.0.1.$44503109.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.c.0.1.$44503109.0.0.1.0">Finding My Family - Windrush</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.c.0.1.$44503109.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.c.0.1.$44503109.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.c.0.1.$44503109.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.c.0.1.$44503109.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.c.0.1.$44503109.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.c.0.1.$44503109.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.c.0.1.$44503109.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2018-06-18T05:48:33+00:00" data-datetime="18 Jun 2018" data-reactid=".47x0ykjrrm.1.c.0.1.$44503109.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.c.0.1.$44503109.0.0.1.2.0.0.1.0">18 Jun 2018</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.c.0.1.$44503109.0.0.1.2.0.0.1.1">18 June 2018</span></time></span></div></div></div></a></div></div><div class="newsround-more-stories__story newsround-more-stories__story--more-stories-5" data-reactid=".47x0ykjrrm.1.c.0.1.$40848395"><div class="newsround-promo__container" data-istats-track="true" data-istats-track-link-location="nr_home_more_stories_5-20" data-reactid=".47x0ykjrrm.1.c.0.1.$40848395.0"><a href="/web/20200531140253/https://www.bbc.co.uk/newsround/40848395" class="newsround-promo__content newsround-promo__content--teal" data-reactid=".47x0ykjrrm.1.c.0.1.$40848395.0.0"><div class="newsround-promo__media" data-reactid=".47x0ykjrrm.1.c.0.1.$40848395.0.0.0"><div class="newsround-promo__fallback-image" data-reactid=".47x0ykjrrm.1.c.0.1.$40848395.0.0.0.0"><img src="https://web.archive.org/web/20200531140253im_/https://ichef.bbci.co.uk/news/240/cpsprodpb/14931/production/_97237248_titleslateweb.jpg" alt="Finding My Family graphic" class="newsround-promo__responsive-image" data-reactid=".47x0ykjrrm.1.c.0.1.$40848395.0.0.0.0.0"/></div><span class="newsround-promo__promolabel newsround-promo__promolabel--teal newsround-promo__promolabel--duration" data-reactid=".47x0ykjrrm.1.c.0.1.$40848395.0.0.0.1"><div class="gel-icon gel-icon--play newsround-promo__icon" data-reactid=".47x0ykjrrm.1.c.0.1.$40848395.0.0.0.1.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.c.0.1.$40848395.0.0.0.1.0.0"><title data-reactid=".47x0ykjrrm.1.c.0.1.$40848395.0.0.0.1.0.0.0">play</title><path d="M3 32l26-16L3 0v32z" data-reactid=".47x0ykjrrm.1.c.0.1.$40848395.0.0.0.1.0.0.1"></path></svg></div><span class="duration" data-reactid=".47x0ykjrrm.1.c.0.1.$40848395.0.0.0.1.1">23:43</span></span></div><div class="newsround-promo__main" data-reactid=".47x0ykjrrm.1.c.0.1.$40848395.0.0.1"><p class="newsround-promo__headline" data-reactid=".47x0ykjrrm.1.c.0.1.$40848395.0.0.1.0">Finding My Family - Partition</p><div class="newsround-promo__footer" data-reactid=".47x0ykjrrm.1.c.0.1.$40848395.0.0.1.2"><div class="newsround-promo__timestamp" data-reactid=".47x0ykjrrm.1.c.0.1.$40848395.0.0.1.2.0"><span class="gs-c-timestamp gs-o-bullet gs-o-bullet-" data-reactid=".47x0ykjrrm.1.c.0.1.$40848395.0.0.1.2.0.0"><span class="gs-o-bullet__icon gel-icon" data-reactid=".47x0ykjrrm.1.c.0.1.$40848395.0.0.1.2.0.0.0"><svg viewbox="0 0 32 32" data-reactid=".47x0ykjrrm.1.c.0.1.$40848395.0.0.1.2.0.0.0.0"><polygon points="17,15.4 17,6 15,6 15,16.6 23.8,21.7 24.8,19.9" data-reactid=".47x0ykjrrm.1.c.0.1.$40848395.0.0.1.2.0.0.0.0.0"></polygon><path d="M16,4c6.6,0,12,5.4,12,12c0,6.6-5.4,12-12,12S4,22.6,4,16C4,9.4,9.4,4,16,4 M16,0C7.2,0,0,7.2,0,16c0,8.8,7.2,16,16,16 s16-7.2,16-16C32,7.2,24.8,0,16,0L16,0z" data-reactid=".47x0ykjrrm.1.c.0.1.$40848395.0.0.1.2.0.0.0.0.1"></path></svg></span><time class="gs-o-bullet__text gel-brevier qa-status-date" datetime="2017-08-08T10:11:06+00:00" data-datetime="8 Aug 2017" data-reactid=".47x0ykjrrm.1.c.0.1.$40848395.0.0.1.2.0.0.1"><span aria-hidden="true" class="qa-status-date-output" data-reactid=".47x0ykjrrm.1.c.0.1.$40848395.0.0.1.2.0.0.1.0">8 Aug 2017</span><span class="gs-u-vh" data-reactid=".47x0ykjrrm.1.c.0.1.$40848395.0.0.1.2.0.0.1.1">8 August 2017</span></time></span></div></div></div></a></div></div></div></div><div class="newsround-more-stories__outer newsround-more-stories__outer--more-stories-5" data-reactid=".47x0ykjrrm.1.c.1"><div class="gs-u-box-size newsround-more-stories__show-more-wrapper newsround-more-stories__show-more-wrapper--more-stories-5" data-reactid=".47x0ykjrrm.1.c.1.0"><div class="newsround-more-stories__show-more newsround-more-stories__show-more--more-stories-5" data-reactid=".47x0ykjrrm.1.c.1.0.0"><div class="newsround-more-stories__show-more-button-container newsround-more-stories__show-more-button-container--more-stories-5" data-reactid=".47x0ykjrrm.1.c.1.0.0.0"><div class="newsround-more-stories__show-more-button" data-reactid=".47x0ykjrrm.1.c.1.0.0.0.0"><button class="newsround-button newsround-button--teal" tabindex="-1" aria-label="Show more stories" data-reactid=".47x0ykjrrm.1.c.1.0.0.0.0.0"><span data-reactid=".47x0ykjrrm.1.c.1.0.0.0.0.0.1">Show more</span></button></div></div></div></div></div></section></section></div></div> </div> <div id="orb-footer" class="orb-footer" dir="ltr"><div id="navp-orb-footer-promo"></div><aside role="complementary"><div id="orb-aside" class="orb-nav-sec b-r b-g-p"><div class="orb-footer-inner" role="navigation" aria-label="BBC"><h2 class="orb-footer-lead">Explore the BBC</h2><div class="orb-footer-primary-links"><ul><li class="orb-nav-cbbc"><a href="https://web.archive.org/web/20200531140253/https://www.bbc.co.uk/cbbc">CBBC</a></li><li class="orb-nav-iplayer orb-d"><a href="https://web.archive.org/web/20200531140253/https://www.bbc.co.uk/tv/cbbc">CBBC iPlayer</a></li><li class="orb-nav-newsround"><a href="https://web.archive.org/web/20200531140253/https://www.bbc.co.uk/newsround">Newsround</a></li><li class="orb-nav-bitesize orb-d"><a href="https://web.archive.org/web/20200531140253/https://www.bbc.co.uk/bitesize">Bitesize</a></li><li class="orb-nav-ownit orb-d"><a href="https://web.archive.org/web/20200531140253/https://www.bbc.com/ownit">Own It</a></li><li class="orb-nav-cbeebies"><a href="https://web.archive.org/web/20200531140253/https://www.bbc.co.uk/cbeebies">CBeebies</a></li><li class="orb-nav-cbbctv"><a href="https://web.archive.org/web/20200531140253/https://www.bbc.co.uk/iplayer/guide/cbbc">CBBC on TV</a></li><li class="orb-nav-cbbchelp orb-d"><a href="https://web.archive.org/web/20200531140253/https://www.bbc.co.uk/cbbc/curations/cbbc-help">CBBC Help</a></li></ul></div></div></div></aside><footer role="contentinfo"><div id="orb-contentinfo" class="orb-nav-sec b-r b-g-p"><script>window.orb.worldwideFooterlinks = '<li class="orb-footer-ads"><a href="https://web.archive.org/web/20200531140253/https://advertising.bbcworldwide.com/">Advertise with us<'+'/a><'+'/li><li class="orb-footer-adchoices"><a href="https://web.archive.org/web/20200531140253/https://www.bbc.com/usingthebbc/cookies/how-can-i-change-my-bbc-cookie-settings/">AdChoices / Do Not Sell My Info<'+'/a><'+'/li>';</script><div class="orb-footer-inner"> <ul><li class="orb-footer-terms"><a href="https://web.archive.org/web/20200531140253/https://www.bbc.co.uk/usingthebbc/terms/">Terms of Use</a></li><li class="orb-footer-about"><a href="https://web.archive.org/web/20200531140253/https://www.bbc.co.uk/aboutthebbc">About the BBC</a></li><li class="orb-footer-privacy"><a href="https://web.archive.org/web/20200531140253/https://www.bbc.co.uk/usingthebbc/privacy/">Privacy Policy</a></li><li class="orb-footer-cookies"><a href="https://web.archive.org/web/20200531140253/https://www.bbc.co.uk/usingthebbc/cookies/">Cookies</a></li><li class="orb-footer-accessibility"><a href="https://web.archive.org/web/20200531140253/https://www.bbc.co.uk/accessibility/">Accessibility Help</a></li><li class="orb-footer-parental"><a href="https://web.archive.org/web/20200531140253/https://www.bbc.co.uk/guidance">Parental Guidance</a></li><li class="orb-footer-contact"><a href="https://web.archive.org/web/20200531140253/https://www.bbc.co.uk/contact">Contact the BBC</a></li><li class="orb-footer-newsletter"><a href="https://web.archive.org/web/20200531140253/https://www.bbc.co.uk/bbcnewsletter">Get Personalised Newsletters</a></li></ul><small><em class="orb-hilight">Copyright © 2020 BBC.</em> The BBC is not responsible for the content of external sites. <span class="orb-footer-links"><a href="https://web.archive.org/web/20200531140253/https://www.bbc.co.uk/help/web/links/" class="orb-hilight">Read about our approach to external linking.</a></span></small></div></div></div></footer></div><script id="orb-js-script" data-assetpath="https://nav.files.bbci.co.uk/orbit/1d3c7747a3c32f8f7dcb5ca089209136/" src="https://web.archive.org/web/20200531140253js_/https://nav.files.bbci.co.uk/orbit/1d3c7747a3c32f8f7dcb5ca089209136/js/orb.min.js"></script> <script type="text/javascript">require(['orb/lib/_$'], function($) { $.ready(function() { initialiseFooter(); }); var scrollCheckTimer; var didScroll; var previousPosition = 0; var delta = 5; var PROMO_SHOW_BREAKPOINT = 1500; var pageLength = 0; function initialiseFooter() { // Suppress this feature on browsers we no longer test var myNav = navigator.userAgent.toLowerCase(); var oldIE = (myNav.indexOf('msie') !== -1) && parseInt(myNav.split('msie')[1], 10) <= 10; if (!oldIE) { require(['orb/cookies'], function (bbccookies) { var disabledByCookie = (parseInt(bbccookies.get('ckns_nav_promofail')) || 0) >= 3; if (!disabledByCookie) { window.bbcuser.isUKCombined().then(function(isUK) { if (isUK) { setUpLazyLoading(); } }); } }); } } function setUpLazyLoading() { // offsetHeight is expensive to calculate, only do it once. pageLength = Math.abs(document.body.offsetHeight); if (pageLength < getViewportHeight() + 300 || pageLength - getCurrentPosition() < PROMO_SHOW_BREAKPOINT) { loadPromo(); } else { window.onscroll = function () { didScroll = true; }; scrollCheckTimer = setInterval(function () { if (didScroll) { hasScrolled(); didScroll = false; } }, 250); } } function loadPromo() { clearInterval(scrollCheckTimer); require(['orb/async/_footerpromo'], function(promo) { promo.init('https://web.archive.org/web/20200531140253/https://navpromo.api.bbci.co.uk', 'cbbc'); }); } function getViewportHeight() { return window.innerHeight; } function getCurrentPosition() { return Math.abs(window.scrollY || document.body.scrollTop || document.documentElement.scrollTop); } function hasScrolled() { var currentPosition = getCurrentPosition(); if (Math.abs(previousPosition - currentPosition) <= delta) { return; } if (currentPosition > previousPosition) { if ((pageLength - currentPosition) <= PROMO_SHOW_BREAKPOINT) { loadPromo(); } } previousPosition = currentPosition; } })</script><script type="text/javascript">/*<![CDATA[*/ require(['orb/nav'], function(nav) { window.bbcuser.isUKCombined().then(function(isUK) { if (isUK) { nav.loadJs('https://web.archive.org/web/20200531140253/https://nav.files.bbci.co.uk/orbit/1d3c7747a3c32f8f7dcb5ca089209136/js/edr.min.js'); } }); }); /*]]>*/</script> <!-- BBCDOTCOM bodyLast --><div class="bbccom_display_none"><script type="text/javascript">/*<![CDATA[*/ if (window.bbcdotcom && window.bbcdotcom.analytics && bbcdotcom.config && !bbcdotcom.config.isSportApp() && !bbcdotcom.config.isReel()) { bbcdotcom.checkThirdPartyFirst(bbcdotcom.analytics.page, bbcdotcom.analytics); } /*]]>*/</script><noscript><img src="//web.archive.org/web/20200531140253im_/https://ssc.api.bbc.com/?c1=2&c2=19293874&ns_site=bbc&name=" height="1" width="1" alt=""></noscript><script type="text/javascript">/*<![CDATA[*/ if (window.bbcdotcom && bbcdotcom.currencyProviders) { bbcdotcom.checkThirdPartyFirst(bbcdotcom.currencyProviders.write, bbcdotcom.currencyProviders); } /*]]>*/</script><script type="text/javascript">/*<![CDATA[*/ if (window.bbcdotcom && bbcdotcom.currencyProviders) { bbcdotcom.checkThirdPartyFirst(bbcdotcom.currencyProviders.postWrite, bbcdotcom.currencyProviders); } /*]]>*/</script><script type="text/javascript">/*<![CDATA[*/ if (window.bbcdotcom && bbcdotcom.data && bbcdotcom.data.stats && bbcdotcom.data.stats === 1 && bbcdotcom.utils && window.location.pathname === '/') { var wwhpEdition = bbcdotcom.utils.getMetaPropertyContent('wwhp-edition'); var _sf_async_config={}; /** CONFIGURATION START **/ _sf_async_config.uid = 50924; _sf_async_config.domain = "bbc.co.uk"; _sf_async_config.title = "Homepage"+(wwhpEdition !== '' ? ' - '+wwhpEdition : ''); _sf_async_config.sections = "Homepage"+(wwhpEdition !== '' ? ', Homepage - '+wwhpEdition : ''); _sf_async_config.region = wwhpEdition; _sf_async_config.path = "/"+(wwhpEdition !== '' ? '?'+wwhpEdition : ''); /** CONFIGURATION END **/ (function(){ function loadChartbeat() { window._sf_endpt=(new Date()).getTime(); var e = document.createElement("script"); e.setAttribute("language", "javascript"); e.setAttribute("type", "text/javascript"); e.setAttribute('src', '//web.archive.org/web/20200531140253/https://static.chartbeat.com/js/chartbeat.js'); document.body.appendChild(e); } var oldonload = window.onload; window.onload = (typeof window.onload != "function") ? loadChartbeat : function() { oldonload(); loadChartbeat(); }; })(); } /*]]>*/</script><script type="text/javascript">/*<![CDATA[*/ (function() { window.bbcdotcom.bodyLast = true; }()); /*]]>*/</script></div><!-- BBCDOTCOM all code in page --><script type="text/javascript">if (window.SEARCHBOX.suppress === false && window.SEARCHBOX.locale && /^en-?.*?/.test(window.SEARCHBOX.locale)) { require.config({ paths: { "search/searchbox": window.SEARCHBOX.searchboxAppStaticPrefix, } }); if (bbcuser && bbcuser.isUKCombined) { bbcuser.isUKCombined().then(function (isUK) { if (isUK) { require(['search/searchbox/searchboxDrawer'], function (SearchboxDrawer) { SearchboxDrawer.run(window.SEARCHBOX); }); } }); } }</script> <script type="text/javascript">window.COOKIES_STATIC_HOST = 'https://web.archive.org/web/20200531140253/https://nav.files.bbci.co.uk/orbit-webmodules/0.0.2-456.e308d0a/cookie-banner/cookie-prompt/';</script><script src="https://web.archive.org/web/20200531140253js_/https://nav.files.bbci.co.uk/orbit-webmodules/0.0.2-456.e308d0a/cookie-banner/cookie-banners.bundle.js" async=""></script><script type="text/javascript">require(["istats-1","orb/cookies"],function(o,t){if(t.isAllowed("s1"))try{if(!require.s.contexts._.config.paths.idcta)return void i();require(["idcta/idcta-1"],function(t){t&&"function"==typeof t.getIStatsLabels&&o.addLabels(t.getIStatsLabels()),i()},function(t){throw t})}catch(t){console&&"function"==typeof console.log&&console.log("an exception occurred while adding idcta labels to istats, invoking istats without them",t),i()}function i(){o.invoke()}});</script><script type="text/javascript">"use strict";window.__reverb.__reverbLoadedPromise.then(function(e){return e.initialise().then(function(){return e.viewEvent()})},function(){console.log("Failed to load reverb. No event sent")});</script><script src="https://web.archive.org/web/20200531140253js_/https://nav.files.bbci.co.uk//user-activity-helper/1d5fa47d9ba60d5c52b377ec3208b7be/js/detectview.bundle.js" async=""></script><script>require.config({"paths":{"bump-3":"//web.archive.org/web/20200531140253/https://emp.bbci.co.uk/emp/bump-3/bump-3","bump-4":"//web.archive.org/web/20200531140253/https://emp.bbci.co.uk/emp/bump-4/bump-4","echo-8.1.0":"//web.archive.org/web/20200531140253/https://static.bbci.co.uk/echoclient/modules/echo-8.1.0.js","jssignals-1":"//web.archive.org/web/20200531140253/https://static.bbci.co.uk/frameworks/jssignals/0.3.6/modules/jssignals-1","jquery-1":"//web.archive.org/web/20200531140253/https://static.test.bbc.co.uk/frameworks/jquery/0.4.1/sharedmodules/jquery-1.7.2","jquery-1.9":"//web.archive.org/web/20200531140253/https://static.bbci.co.uk/frameworks/jquery/0.4.1/sharedmodules/jquery-1.9.1","swfobject-2":"//web.archive.org/web/20200531140253/https://static.bbci.co.uk/frameworks/swfobject/0.1.10/sharedmodules/swfobject-2"}})</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-dynamic-feature-toggles/id/homepage/isiteproject/nrconfigs/version/1.1.1', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"optimizely":"true","superpromo":"true","NEWSROUND-312-single-top-story":"true","NEWSROUND-366-homepage-scroll-tracking":"true","NEWSROUND-448-new-bulletin":"true","NEWSROUND-450-additional-top-stories":"true","NEWSROUND-516-cpv-homepage":"true"}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-newsround-index-promos-data/assetUri/newsround%2Fhome/previewGuid/undefined/semanticGroupName/More%20stories%201/version/4.0.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"name":"More Stories","items":[{"promoType":"story","timestamp":"2020-03-02T11:52:03+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/E1AB\/production\/_111717775_1_nrcor_tom9.jpg","imgAlt":"coronavirus","headline":"Coronavirus: Everything you need to know","summary":"Take a look at all of our content about the coronavirus and what it means for you.","href":"https:\/\/web.archive.org\/web\/20200531140253\/https:\/\/www.bbc.co.uk\/newsround#more-stories-2","includeComments":false},{"id":"52852636","promoType":"story","timestamp":"2020-05-30T06:52:05+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/249F\/production\/_112557390_sonic2.jpg","imgAlt":"Sonic.","headline":"Are you ready for Sonic 2?","summary":"After the success of the first movie it has been announced that there will be a Sonic the Hedgehog 2, so what do we know so far about the speedy sequel?","href":"\/newsround\/52852636","includeComments":true},{"id":"52837288","promoType":"story","timestamp":"2020-05-29T14:27:05+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/104B9\/production\/_112554766_photo29-05-2020142324.jpg","imgAlt":"Trent-Alexander-Arnold-Premier-League-trophy.","headline":"Liverpool could win Premier League title at neutral ground","summary":"Up to six Premier League matches could be played at neutral venues, including Liverpool's title decider.","href":"\/newsround\/52837288","includeComments":true},{"id":"52838131","promoType":"story","timestamp":"2020-05-30T09:12:59+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/12BC0\/production\/_112563767_gettyimages-1215846830-1.jpg","imgAlt":"Beach-in-the-UK","headline":"What is the latest lockdown advice?","summary":"There's a warning from scientists about relaxing lockdown too soon, with plans to ease rules from Monday in England.","href":"\/newsround\/52838131","includeComments":true},{"id":"52838577","promoType":"story","timestamp":"2020-05-30T06:12:45+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/12DB2\/production\/_112543277_5b841a09-db82-4974-924c-8f0be7c0039c.jpg","imgAlt":"Solar Orbiter","headline":"European Space Agency turns 45!","summary":"Newsround takes a look at the exciting projects the agency is currently working on to help boost our understanding of space.","href":"\/newsround\/52838577","includeComments":true},{"id":"52760018","promoType":"story","timestamp":"2020-05-29T12:33:00+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/17C5C\/production\/_103327379_osaka_wins_reuters.jpg","imgAlt":"Naomi Osaka","headline":"Naomi Osaka becomes the highest-paid female athlete ever","summary":"The list of the highest-paid sports stars, by business magazine Forbes, has been released.","href":"\/newsround\/52760018","includeComments":true},{"id":"52845580","promoType":"story","timestamp":"2020-05-29T06:38:33+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/9BD6\/production\/_112549893_gettyimages-1061546364.jpg","imgAlt":"andre-gray-and-leigh-anne-pinnock.","headline":"Little Mix's Leigh-Anne is getting married!","summary":"The Little Mixer is engaged to her partner of four years, footballer Andre Gray.","href":"\/newsround\/52845580","includeComments":true},{"id":"52845629","promoType":"story","timestamp":"2020-05-29T09:08:28+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/898F\/production\/_112551253_gettyimages-1227630799.jpg","imgAlt":"donald-trump.","headline":"President Trump takes 'big action' against social media","summary":"US President Donal Trump has been arguing with social media companies after they did something he didn't like.","href":"\/newsround\/52845629","includeComments":true},{"id":"52847195","promoType":"story","timestamp":"2020-05-29T14:00:33+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/8313\/production\/_112555533_montage.jpg","imgAlt":"will-smith-jojo-siwa-jason-derulo.","headline":"Five celebs smashing the Wipe It Down challenge","summary":"The Wipe It Down challenge is going strong on TikTok, so here are five celebs who are smashing it!","href":"\/newsround\/52847195","includeComments":true},{"id":"48460961","promoType":"story","timestamp":"2020-05-28T15:38:17+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/DB66\/production\/_107166165_mediaitem107164992.jpg","imgAlt":"Child-stealing-a-chocolate-biscuit","headline":"What's the best biscuit on the planet?","summary":"A National Biscuit Day survey reckons it has figured out the UK's top biscuits, but did your favourite make the grade?","href":"\/newsround\/48460961","includeComments":true},{"id":"52839153","promoType":"media","timestamp":"2020-05-29T05:48:00+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/1A62\/production\/_112545760_p08fg296.jpg","imgAlt":"Lucy-smiling","headline":"Going back to school: 'I'm really excited about seeing my friends'","summary":"Some schools in England will open their doors once more to year 6, year 1, reception and nursery on 1 June. We spoke to 10-year-old Lucy about how she's feeling about going back.","href":"\/newsround\/52839153","includeComments":false,"videoOptions":{"title":"Lucy: 'I'm really excited about seeing my friends'","app_name":"newsround","app_type":"responsive","sessionLabels":{"bbc_site":"cbbc","nr_player_type":"in_situ"},"pid":"p08fg1vx","vpid":"p08fg1vz","holdingImageUrl":"\/\/web.archive.org\/web\/20200531140253\/https:\/\/ichef.bbci.co.uk\/images\/ic\/$recipe\/p08fg296.jpg","mediaType":"video","mediaForm":"clip","duration":"1:42"}},{"id":"52842067","promoType":"story","timestamp":"2020-05-29T12:19:57+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/17601\/production\/_112554759_facup.jpg","imgAlt":"FA-Cup.","headline":"FA Cup set to kick off again from end of June","summary":"Plans are being put in place for the FA Cup final to be held on 1 August with quarter-finals resuming on 27 June if given approval by UK government","href":"\/newsround\/52842067","includeComments":true},{"id":"52837287","promoType":"story","timestamp":"2020-05-29T08:28:15+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/8682\/production\/_112543443_gettyimages-1222080899-1.jpg","imgAlt":"Clap-For-Carers.","headline":"Was that the last Clap for Carers... for now?","summary":"Could last night's clap for carers be the last one until next year?","href":"\/newsround\/52837287","includeComments":false},{"id":"52839244","promoType":"media","timestamp":"2020-05-29T05:56:03+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/142A2\/production\/_112549528_mediaitem112549527.jpg","imgAlt":"how-does-contact-tracing-work","headline":"What is a contact tracing app and how does it work?","summary":"There are lot's of things being used in the fight against coronavirus and the latest one is an app!","href":"\/newsround\/52839244","includeComments":false,"videoOptions":{"title":"Contact Tracing App: What is it?","app_name":"newsround","app_type":"responsive","sessionLabels":{"bbc_site":"cbbc","nr_player_type":"in_situ"},"pid":"p08ff5g2","vpid":"p08ff5g4","holdingImageUrl":"\/\/web.archive.org\/web\/20200531140253\/https:\/\/ichef.bbci.co.uk\/images\/ic\/$recipe\/p08ffnqn.jpg","mediaType":"video","mediaForm":"clip","duration":"2:16"}},{"id":"52825455","promoType":"story","timestamp":"2020-05-29T05:18:07+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/5959\/production\/_112537822_gettyimages-1221521514-1.jpg","imgAlt":"Going-to-the-cinema-during-coronavirus.","headline":"Could we be back in cinemas from July?","summary":"Cineworld and Odeon are planning to reopen from July with new rules in place to reduce the risk of coronavirus spreading.","href":"\/newsround\/52825455","includeComments":true},{"id":"51318780","promoType":"story","timestamp":"2020-05-29T05:17:05+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/4707\/production\/_112538181_backgroundwithloogoo.jpg","imgAlt":"Quiz of the week","headline":"Quiz: Have you been following this week's news?","summary":"Have you been keeping up with the news this week? Test yourself with the Quiz of the Week!","href":"\/newsround\/51318780","includeComments":false},{"id":"43245617","promoType":"media","timestamp":"2020-05-29T05:17:21+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/7B36\/production\/_112524513_p08fdg6z.jpg","imgAlt":"Man surfing and strange logo","headline":"Strange News","summary":"Shanequa has your strangest stories for this week. We've got an encounter with a grizzly bear, surfing a river and a drive-in concert!!","href":"\/newsround\/43245617","includeComments":false,"videoOptions":{"title":"Strange News","app_name":"newsround","app_type":"responsive","sessionLabels":{"bbc_site":"cbbc","nr_player_type":"in_situ"},"pid":"p08fdg5f","vpid":"p08fdg5k","holdingImageUrl":"\/\/web.archive.org\/web\/20200531140253\/https:\/\/ichef.bbci.co.uk\/images\/ic\/$recipe\/p08fdg6z.jpg","mediaType":"video","mediaForm":"clip","duration":"1:17"}},{"id":"52826468","promoType":"story","timestamp":"2020-05-28T16:07:42+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/A596\/production\/_112409324_gettyimages-1212447977.jpg","imgAlt":"Pro-democracy demonstrators calling for the city's independence protest in Tsim Sha Tsui waterfront in Hong Kong on May 10, 2020","headline":"What's going on between Hong Kong and China?","summary":"What's behind China's proposed new security law for Hong Kong and why has it triggered mass protests in the region.","href":"\/newsround\/52826468","includeComments":true},{"id":"52821345","promoType":"story","timestamp":"2020-05-28T10:40:27+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/146FB\/production\/_112270738_gettyimages-1164902889.jpg","imgAlt":"Schoolbag and books","headline":"How will schools change to help keep you safe?","summary":"From class sizes, PPE and general protection, here's all we know about the latest advice on going back to school.","href":"\/newsround\/52821345","includeComments":true},{"id":"52835753","promoType":"story","timestamp":"2020-05-28T12:40:33+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/74BA\/production\/_112528892_061637098-1.jpg","imgAlt":"Nicola Sturgeon","headline":"How Scotland's lockdown will look from Friday","summary":"First Minister Nicola Sturgeon has announced that Scotland will begin to ease coronavirus lockdown rules from Friday. Here's all you need to know on the latest update.","href":"\/newsround\/52835753","includeComments":true},{"id":"52830492","promoType":"story","timestamp":"2020-05-28T13:19:53+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/2A15\/production\/_112537701_gettyimages-1206602477.jpg","imgAlt":"ninja.","headline":"Ninja is hosting a Fortnite competition","summary":"Gaming steamer Ninja is hosting his own gaming competition!","href":"\/newsround\/52830492","includeComments":true},{"id":"52830491","promoType":"story","timestamp":"2020-05-28T12:06:05+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/5A85\/production\/_112537132_vote1.jpg","imgAlt":"gaming-vote.","headline":"Should consoles limit your gaming time? ","summary":"Should parents be able to use console controls on their phones to decide how long you play videos games for?","href":"\/newsround\/52830491","includeComments":true},{"id":"52834343","promoType":"story","timestamp":"2020-05-28T13:10:48+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/3AEB\/production\/_112538051_blackpink.jpg","imgAlt":"lady-gaga-and-blackpink.","headline":"BLACKPINK and Lady Gaga have a new song together!","summary":"The pop icon has teamed up with K-Pop mega stars BLACKPINK on a brand-new track called Sour Candy.","href":"\/newsround\/52834343","includeComments":true},{"id":"52830119","promoType":"story","timestamp":"2020-05-28T07:52:49+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/9C61\/production\/_112533004_gettyimages-1214527741.jpg","imgAlt":"woman-with-gloves-and-mask-holding-phone.","headline":"How does NHS test and trace work?","summary":"The government launches its new test and trace service today to help tackle the spread of the coronavirus.","href":"\/newsround\/52830119","includeComments":true},{"id":"52831552","promoType":"story","timestamp":"2020-05-28T10:55:27+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/7CD1\/production\/_112535913_gettyimages-556634605.jpg","imgAlt":"marquee-and-welsh-dragon.","headline":"Virtual Eisteddfod 'has been incredible'!","summary":"The Welsh youth festival is being held online this year for the very time in its history.","href":"\/newsround\/52831552","includeComments":true},{"id":"52830196","promoType":"story","timestamp":"2020-05-28T10:35:41+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/4603\/production\/_112532971_tv061659789.jpg","imgAlt":"rocket","headline":"Bad weather delays Space X launch","summary":"Nasa and Space X's rocket mission has been delayed by bad weather, but it's not all over and they'll try again at the weekend.","href":"\/newsround\/52830196","includeComments":true},{"id":"52822683","promoType":"story","timestamp":"2020-05-28T08:18:04+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/105F6\/production\/_112526076_gettyimages-1146662108.jpg","imgAlt":"Pink and yellow moth.","headline":"The milkshake-coloured moth causing a stir online","summary":"We often think of butterflies are being pretty and colourful, and moths as being a bit dull. But it's not true of these guys!","href":"\/newsround\/52822683","includeComments":true},{"id":"52830770","promoType":"story","timestamp":"2020-05-28T08:34:50+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/B7B9\/production\/_112533074_jamespeach.jpg","imgAlt":"duchess-of-cornwall-josh-gad-and-lupita-nyongo.","headline":"The Duchess of Cornwall takes on James and the Giant Peach!","summary":"The Duchess joins a number of famous faces for a special reading of Roald Dahl's much-loved novel.","href":"\/newsround\/52830770","includeComments":true},{"id":"52830244","promoType":"story","timestamp":"2020-05-28T06:28:32+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/903B\/production\/_112532963_pigeon.jpg","imgAlt":"pigeon spy","headline":"Pigeon 'spy' arrested in India","summary":"The owner of a pigeon held by India for spying says his bird was freed for Eid and is innocent.","href":"\/newsround\/52830244","includeComments":true},{"id":"52821768","promoType":"story","timestamp":"2020-05-28T05:53:37+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/7ABF\/production\/_112532413_finalmake.png","imgAlt":"sun catcher","headline":"How to make a suncatcher","summary":"YouTubers and sisters Ruby and Raylee teach us how to make suncatchers for your window at home","href":"\/newsround\/52821768","includeComments":true},{"id":"52755625","promoType":"media","timestamp":"2020-05-28T05:20:35+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/058F\/production\/_112532410_91748592_1557468474418549_7233896572067512320_o.jpg","imgAlt":"Xavier Woods","headline":"Xavier Woods: 'WWE can help make E-Sports bigger'","summary":"WWE wrestler Xavier Woods tells Newsround about his love for gaming and how he thinks wrestling can help make E-Sports even bigger","href":"\/newsround\/52755625","includeComments":false,"videoOptions":{"title":"Xavier Woods: WWE can help make E-Sports bigger","app_name":"newsround","app_type":"responsive","sessionLabels":{"bbc_site":"cbbc","nr_player_type":"in_situ"},"pid":"p08dybsw","vpid":"p08dybtm","holdingImageUrl":"\/\/web.archive.org\/web\/20200531140253\/https:\/\/ichef.bbci.co.uk\/images\/ic\/$recipe\/p08dyd0d.jpg","mediaType":"video","mediaForm":"clip","duration":"2:48"}},{"id":"52823058","promoType":"story","timestamp":"2020-05-28T06:07:59+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/14A02\/production\/_112528448_fc44399dde081d98da5a78e5d502eab3_f224.jpg","imgAlt":"The-Derby-Arboretum","headline":"Green spaces 'must be protected and enhanced'","summary":"Field In Trust say homes could be built on green space that has been vital for mental wellbeing during coronavirus.","href":"\/newsround\/52823058","includeComments":true},{"id":"52817090","promoType":"story","timestamp":"2020-05-27T07:53:42+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/39E4\/production\/_112502841_ickabog.png","imgAlt":"Front page of The Ickabog","headline":"Are you reading The Ickabog? Send us your reviews!","summary":"It's a brand new book written by J.K. Rowling, and the first two chapters have already been published on her website.","href":"\/newsround\/52817090","includeComments":true},{"id":"52818553","promoType":"story","timestamp":"2020-05-27T13:48:26+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/CBB8\/production\/_112525125_shutterstock_editorial_10524242j.jpg","imgAlt":"Minnie Mouse in Disneyland Tokyo","headline":"Could Tokyo Disneyland reopen with 'no screaming' rule?","summary":"The suggested guidelines are to keep people safe when theme parks reopen following coronavirus.","href":"\/newsround\/52818553","includeComments":true},{"id":"52788389","promoType":"story","timestamp":"2020-05-27T12:15:29+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/A80F\/production\/_112432034_aaaaa061604812-1.jpg","imgAlt":"HK","headline":"Why are there more protests in Hong Kong?","summary":"There's been more protests in Hong Kong, but what's happening and what's behind it?","href":"\/newsround\/52788389","includeComments":true},{"id":"52806820","promoType":"story","timestamp":"2020-05-27T06:09:44+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/11C9D\/production\/_112516827_index.jpg","imgAlt":"nikki-lilly-ellie-simmonds-tim-peake-marcus-rashford","headline":"Which of these would be your top celeb supply teacher?","summary":"Astronaut Tim Peake, footballer Marcus Rashford and CBBC star Nikki Lily are just some of the people joining in.","href":"\/newsround\/52806820","includeComments":true},{"id":"52503088","promoType":"story","timestamp":"2020-05-27T14:56:42+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/A600\/production\/_112069424_gettyimages-1210873668.jpg","imgAlt":"Pictures of fans, players, coaches and staff of Bundesliga club Borussia Moenchengladbach are seen at Borussia-Park","headline":"How football might look behind closed doors","summary":"Football clubs around the world are coming up with new ways to create an atmosphere during games played behind closed doors.","href":"\/newsround\/52503088","includeComments":true},{"id":"47218511","promoType":"story","timestamp":"2020-05-27T11:11:51+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/5106\/production\/_112524702_gettyimages-1060377808.jpg","imgAlt":"Jimmy Fallon","headline":"What is blackface?","summary":"US TV host Jimmy Fallon has apologised for darkening the skin on his face and hands - what's known as 'blackface' - in a Saturday Night Live sketch from 2000.","href":"\/newsround\/47218511","includeComments":true},{"id":"51376710","promoType":"media","timestamp":"2020-05-27T07:07:00+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/F961\/production\/_112514836_p08f6nxy.jpg","imgAlt":"Earth from space","headline":"Your Planet: the latest environment news","summary":"Shanequa has all the latest news effecting your planet, including World Turtle Day and how Antarctica is turning green!","href":"\/newsround\/51376710","includeComments":false,"videoOptions":{"title":"Your Planet","app_name":"newsround","app_type":"responsive","sessionLabels":{"bbc_site":"cbbc","nr_player_type":"in_situ"},"pid":"p08f6k99","vpid":"p08f6k9c","holdingImageUrl":"\/\/web.archive.org\/web\/20200531140253\/https:\/\/ichef.bbci.co.uk\/images\/ic\/$recipe\/p08f6nxy.jpg","mediaType":"video","mediaForm":"clip","duration":"1:42"}},{"id":"52806640","promoType":"story","timestamp":"2020-05-26T13:10:14+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/11AF6\/production\/_112483427_crayola.jpg","imgAlt":"crayola-skin-colour-crayons.","headline":"Crayons for all skin tones","summary":"Crayola is releasing a line of crayons to reflect the different skin colours around the world","href":"\/newsround\/52806640","includeComments":true},{"id":"52805854","promoType":"story","timestamp":"2020-05-26T12:59:20+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/12CBB\/production\/_112478967_zacdrawing.jpg","imgAlt":"Zach with his pictures.","headline":"How animals are helping to raise money during lockdown","summary":"These money-raising animals probably never expected their efforts to make such a big impact.","href":"\/newsround\/52805854","includeComments":true},{"id":"52812882","promoType":"story","timestamp":"2020-05-27T06:19:33+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/184D0\/production\/_109463599_gettyimages-482211501.jpg","imgAlt":"Jacqueline-wilson.","headline":"Jacqueline Wilson gets 'silly' for Summer Reading Challenge","summary":"Several famous faces are saying 'let's get silly' for this year's Summer Reading Challenge.","href":"\/newsround\/52812882","includeComments":true},{"id":"52185414","promoType":"media","timestamp":"2020-05-26T05:23:45+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/89FB\/production\/_111632353_p088t598.jpg","imgAlt":"Mya-Rose-Bird-girl.","headline":"Bird girl: I won't stop 'trying to make things better'","summary":"Meet the teenager known as Bird girl who is trying to improve diversity among young birdwatchers.","href":"\/newsround\/52185414","includeComments":false,"videoOptions":{"title":"I won't stop 'trying to make things better'","app_name":"newsround","app_type":"responsive","sessionLabels":{"bbc_site":"cbbc","nr_player_type":"in_situ"},"pid":"p088t4dz","vpid":"p088wxpm","holdingImageUrl":"\/\/web.archive.org\/web\/20200531140253\/https:\/\/ichef.bbci.co.uk\/images\/ic\/$recipe\/p088wxrn.jpg","mediaType":"video","mediaForm":"clip","duration":"2:15"}},{"id":"52800146","promoType":"story","timestamp":"2020-05-26T05:26:45+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/99F6\/production\/_112441493_shutterstock_editorial_10559427ck.jpg","imgAlt":"female-football players.","headline":"The Women's Super League and Women's Championship seasons have ended","summary":"The FA Women's Super League (WSL) and Women's Championship Board have ended the 2019\/20 season league competitions.","href":"\/newsround\/52800146","includeComments":true},{"id":"52711367","promoType":"story","timestamp":"2020-05-26T05:47:24+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/FBF1\/production\/_112479446_gettyimages-1187238432.jpg","imgAlt":"boy-in-tent.","headline":"How to camp at home this half term","summary":"Lots of you will be at home this half term, but that doesn't mean it has to be boring! Check out our tips for camping indoors.","href":"\/newsround\/52711367","includeComments":true},{"id":"52788644","promoType":"media","timestamp":"2020-05-25T07:21:27+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/17DD8\/production\/_112425779_p08f23wg.jpg","imgAlt":"skiddo antarctica","headline":"How hunting icy meteorites could protect Earth","summary":"Astronauts are on a mission to study meteorites found here on our own planet - hoping they can protect us in the future","href":"\/newsround\/52788644","includeComments":false,"videoOptions":{"title":"How hunting icy meteorites could protect Earth","app_name":"newsround","app_type":"responsive","sessionLabels":{"bbc_site":"cbbc","nr_player_type":"in_situ"},"pid":"p08f0x5s","vpid":"p08f0x5y","holdingImageUrl":"\/\/web.archive.org\/web\/20200531140253\/https:\/\/ichef.bbci.co.uk\/images\/ic\/$recipe\/p08f24ct.jpg","mediaType":"video","mediaForm":"clip","duration":"2:17"}},{"id":"52746347","promoType":"story","timestamp":"2020-05-25T07:24:26+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/1314E\/production\/_112385187_gettyimages-959924926.jpg","imgAlt":"Eid","headline":"How was Eid different this year?","summary":"Muslims celebrated Eid al-Fitr this weekend, but the coronavirus meant this year's celebrations were a little different.","href":"\/newsround\/52746347","includeComments":true},{"id":"52781543","promoType":"gallery","timestamp":"2020-05-23T10:43:21+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/B4A2\/production\/_112424264_whatsappimage2020-05-23at07.28.47.jpg","imgAlt":"emilia-writing-a-letter-at-the-table","headline":"The Queen's 'Thank you' for Emilia","summary":"Seven-year-old Emilia from Northamptonshire was worried that lockdown could be making the Queen lonely, so she decided to write her a letter to check in and to her surprise received one back!","href":"\/newsround\/52781543","includeComments":false},{"id":"52766497","promoType":"story","timestamp":"2020-05-22T07:52:22+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/4589\/production\/_112410871_goldbars.jpg","imgAlt":"gold-bars.","headline":"Brothers find gold treasure while building a den!","summary":"It's not everyday you go to build a makeshift den in your garden - only to find 2kg of gold in the process!","href":"\/newsround\/52766497","includeComments":true}]}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-newsround-index-promos-data/assetUri/newsround%2Fhome/previewGuid/undefined/semanticGroupName/More%20stories%204/version/4.0.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"name":"Quiz-fest","items":[{"id":"47387157","promoType":"story","timestamp":"2020-05-14T06:44:14+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/6ACE\/production\/_105824372_marvel.jpg","imgAlt":"Image of Marvel characters","headline":"Test your Marvel and DC superhero skills!","summary":"How much do you know about Marvel and DC superheroes?","href":"\/newsround\/47387157","includeComments":false},{"id":"52343789","promoType":"story","timestamp":"2020-04-21T15:47:49+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/12812\/production\/_111849757_flamingo.jpg","imgAlt":"Flamingos","headline":"Which animal are you?","summary":"Ever wondered which animal you're similar to? Well try our personality quiz and find out!","href":"\/newsround\/52343789","includeComments":false},{"id":"52545218","promoType":"story","timestamp":"2020-05-05T10:32:52+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/169C7\/production\/_112151629_gettyimages-1142576725.jpg","imgAlt":"cherry-tree","headline":"Can you name the tree?","summary":"In honour of the British Woodland Trust's annual Tree of the Year competition, we've put together a handy quiz to help you identify some of the UK's most popular trees!","href":"\/newsround\/52545218","includeComments":true},{"id":"45576191","promoType":"story","timestamp":"2018-09-26T08:12:23+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/D579\/production\/_103494645_katy-p.jpg","imgAlt":"Chelsea buns with a celebrity face in the centre.","headline":"Quiz: Celebrity Cake Off","summary":"Can you guess which celebrities are hidden in the cakes?","href":"\/newsround\/45576191","includeComments":true},{"id":"52527526","promoType":"story","timestamp":"2020-05-04T07:58:30+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/ED26\/production\/_112101706_untitled.jpg","imgAlt":"Which Star Wars character are you?","headline":"Which Star Wars character are you?","summary":"Have you ever wondered who you'd be if you were in the Star Wars universe? (Yes, you definitely have!) Well now's your chance to find out for sure...","href":"\/newsround\/52527526","includeComments":true},{"id":"45355679","promoType":"story","timestamp":"2018-08-30T10:50:57+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/1A06\/production\/_103226660_claudia-beard.jpg","imgAlt":"Female presenter with full beard.","headline":"Who's behind the beard?","summary":"To celebrate World Beard Day, we've given a few few celebrities some new facial hair. Can you guess who they are?","href":"\/newsround\/45355679","includeComments":true},{"id":"52565132","promoType":"story","timestamp":"2020-05-07T15:42:12+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/5A39\/production\/_112179032_moneygetty.jpg","imgAlt":"Lots of world bank notes","headline":"Do you know your cash?","summary":"Try our tricky money quiz and find out which country is changing the name of its money.","href":"\/newsround\/52565132","includeComments":true},{"id":"52648988","promoType":"story","timestamp":"2020-05-13T10:59:13+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/374B\/production\/_112255141_auntitled.jpg","imgAlt":"earth in hands","headline":"Quiz: How much do you know about planet Earth?","summary":"Test your knowledge about the history of the planet","href":"\/newsround\/52648988","includeComments":true},{"id":"45435173","promoType":"story","timestamp":"2018-09-06T11:09:47+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/6AEB\/production\/_103317372_world-record-index.jpg","imgAlt":"Compilation of Guinness World Record holders.","headline":"World Records - True or false?","summary":"Can you work out which of these world records are true and which are false?","href":"\/newsround\/45435173","includeComments":true},{"id":"52649183","promoType":"story","timestamp":"2020-05-13T11:06:04+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/148BB\/production\/_112255148_ra.jpg","imgAlt":"celebrity siblings","headline":"Quiz: Guess the celebrity siblings","summary":"Can you work out which celebrities these people are related to? Play the quiz to find out.","href":"\/newsround\/52649183","includeComments":true},{"id":"49766312","promoType":"story","timestamp":"2019-09-21T07:28:07+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/0933\/production\/_108855320_get1.jpg","imgAlt":"Friends","headline":"How much do you know about Friends?","summary":"Friends is 25 years old this weekend! But how much do you know about the TV programme?","href":"\/newsround\/49766312","includeComments":true},{"id":"45861154","promoType":"story","timestamp":"2019-09-26T08:48:08+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/BBD6\/production\/_103868084_newsround-royal-baby-title.jpg","imgAlt":"Pictures of royal babies","headline":"Can you guess the royal baby?","summary":"The Duke and Duchess of Sussex have announced that they are expecting a baby","href":"\/newsround\/45861154","includeComments":false},{"id":"46103360","promoType":"story","timestamp":"2018-11-06T08:24:41+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/95EA\/production\/_104187383_trumpandbarack.jpg","imgAlt":"President Trump and President Obama","headline":"How well do you know your US presidents?","summary":"As the US mid-term elections take place, test just how well you know your US presidents.","href":"\/newsround\/46103360","includeComments":true},{"id":"45024727","promoType":"story","timestamp":"2018-07-31T16:02:57+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/162E9\/production\/_102775809_harry.jpg","imgAlt":"Harry Potter and his owl","headline":"Which Harry Potter family do you belong to?","summary":"Take our quiz to find out which Harry Potter and the Cursed Child family would you fit into.","href":"\/newsround\/45024727","includeComments":false},{"id":"48768960","promoType":"story","timestamp":"2019-06-26T06:21:26+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/181FE\/production\/_107541889_sports.jpg","imgAlt":"variety-of-sports.","headline":"Which of these sports aren't in the Olympics?","summary":"Following news that breakdancing could be included at the 2024 Olympic Games in Paris, test your knowledge of the event's sports.","href":"\/newsround\/48768960","includeComments":true}]}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-newsround-index-promos-data/assetUri/newsround%2Fhome/previewGuid/undefined/semanticGroupName/More%20stories%205/version/4.0.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"name":"Newsround Learn","items":[{"id":"51118364","promoType":"story","timestamp":"2020-01-15T13:50:19+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/4453\/production\/_110519471_teacher1_getty.jpg","imgAlt":"Teacher and children in a school classroom","headline":"Welcome to Newsround Teachers","summary":"CBBC's Newsround is the only integrated daily news service for kids and we have a wealth of material that could be used in any classroom","href":"\/newsround\/51118364","includeComments":false},{"id":"51723696","promoType":"story","timestamp":"2020-05-26T10:15:18+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/11EF5\/production\/_111116437_p07m5qmk.jpg","imgAlt":"newsround","headline":"Newsround: Our big stories this week","summary":"Find out what Newsround has been talking about this week","href":"\/newsround\/51723696","includeComments":false},{"id":"51836693","promoType":"story","timestamp":"2020-05-26T10:07:13+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/70AA\/production\/_111224882_titlepage.png","imgAlt":"Big Stories and big words","headline":"Newsround Worksheet: Headlines and glossary","summary":"Here's all you need to know in a few lines and what all the words mean!","href":"\/newsround\/51836693","includeComments":false},{"id":"52712926","promoType":"story","timestamp":"2020-05-19T11:53:05+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/11797\/production\/_112357517_anrteachers_3-1.jpg","imgAlt":"climate","headline":"Newsround topics: Climate change and pollution","summary":"Newsround topics: Climate change and pollution","href":"\/newsround\/52712926","includeComments":false},{"id":"52720395","promoType":"story","timestamp":"2020-05-19T14:50:26+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/2E63\/production\/_112357811_nrteachers_6.jpg","imgAlt":"history","headline":"Newsround topics: People and events from history","summary":"Newsround topics: People and events from history","href":"\/newsround\/52720395","includeComments":false},{"id":"52712121","promoType":"story","timestamp":"2020-05-19T14:48:55+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/05C3\/production\/_112357410_anrteachers_3.jpg","imgAlt":"space","headline":"Newsround topics: Space, astronauts and planets","summary":"Newsround topics: Space, astronauts and planets","href":"\/newsround\/52712121","includeComments":false},{"id":"52713537","promoType":"story","timestamp":"2020-05-19T14:47:04+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/AB63\/production\/_112357834_nrteachers_7.jpg","imgAlt":"nature","headline":"Newsround topics: The Natural World","summary":"Newsround topics: The Natural World","href":"\/newsround\/52713537","includeComments":false},{"id":"52713333","promoType":"story","timestamp":"2020-05-19T13:45:30+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/0A0F\/production\/_112357520_anrteachers_4-1.jpg","imgAlt":"Mental health","headline":"Newsround topics: PSHE and Mental Health","summary":"Newsround topics: PSHE and Mental Health","href":"\/newsround\/52713333","includeComments":false},{"id":"51826298","promoType":"media","timestamp":"2020-03-11T06:52:05+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/9BD3\/production\/_111219893_youngreporter2.jpg","imgAlt":"Young-reporter-pic","headline":"The girl campaigning for more diversity in books","summary":"11-year-old Keziah thinks more needs to be done to promote authors from ethnic minority backgrounds.","href":"\/newsround\/51826298","includeComments":false,"videoOptions":{"title":"The girl who is campaigning for more diversity in books","app_name":"newsround","app_type":"responsive","sessionLabels":{"bbc_site":"cbbc","nr_player_type":"in_situ"},"pid":"p0867897","vpid":"p0867899","holdingImageUrl":"\/\/web.archive.org\/web\/20200531140253\/https:\/\/ichef.bbci.co.uk\/images\/ic\/$recipe\/p08678mp.jpg","mediaType":"video","mediaForm":"clip","duration":"1:31"}},{"id":"51644659","promoType":"media","timestamp":"2020-03-03T06:41:35+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/1CFE\/production\/_111122470_laverne_antrobus.jpg","imgAlt":"Laverne antrobus tips","headline":"Five tips if you're feeling worried about climate change","summary":"Psychologist Laverne Antrobus has some advice if thinking about the environment is getting you down.","href":"\/newsround\/51644659","includeComments":false,"videoOptions":{"title":"5 tips if you're feeling worried about climate change","app_name":"newsround","app_type":"responsive","sessionLabels":{"bbc_site":"cbbc","nr_player_type":"in_situ"},"pid":"p084t5bv","vpid":"p0853b0r","holdingImageUrl":"\/\/web.archive.org\/web\/20200531140253\/https:\/\/ichef.bbci.co.uk\/images\/ic\/$recipe\/p0853b2n.jpg","mediaType":"video","mediaForm":"clip","duration":"0:56"}},{"id":"52410744","promoType":"story","timestamp":"2020-04-28T05:30:00+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/EE95\/production\/_111977016_titlepage_still_00513.jpg","imgAlt":"Koala-and-firefighter-title-page.","headline":"Australia: Life after the bushfires","summary":"Australia experienced the worst bushfire season ever in 2019-2020 with fires blazing for months in large parts of the country. So what was it like living near them? We've been to find out.","href":"\/newsround\/52410744","includeComments":true},{"id":"51388287","promoType":"story","timestamp":"2020-04-22T05:45:16+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/93B9\/production\/_111371873_gettyimages-1097731282.jpg","imgAlt":"climate-change-renewable-energy-graphic.","headline":"Five epic inventions fighting climate change","summary":"From carbon vacuums to kinetic pavements - check out these awesome inventions fighting climate change.","href":"\/newsround\/51388287","includeComments":true},{"id":"48201749","promoType":"story","timestamp":"2020-05-08T07:46:38+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/6895\/production\/_106837762_1.jpg","imgAlt":"crowds-celebrating-VE-day.","headline":"What is VE Day?","summary":"VE Day - or Victory in Europe Day - marks the day towards the end of World War Two when fighting against Nazi Germany in Europe came to an end on 8 May 1945.","href":"\/newsround\/48201749","includeComments":false},{"id":"51403096","promoType":"media","timestamp":"2020-02-07T09:39:52+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/6180\/production\/_110806942_p082hykf.jpg","imgAlt":"inside-my-head-taking-control-of-my-anxiety-a-newsround-special","headline":"Inside My Head: Taking Control of My Anxiety","summary":"This Newsround special follows 16-year-old mental health campaigner Molly as she learns five different ways to battle her anxiety.","href":"\/newsround\/51403096","includeComments":false,"videoOptions":{"title":"Inside My Head: Taking Control of My Anxiety","app_name":"newsround","app_type":"responsive","sessionLabels":{"bbc_site":"cbbc","nr_player_type":"in_situ"},"pid":"p082hygn","vpid":"p082hygq","holdingImageUrl":"\/\/web.archive.org\/web\/20200531140253\/https:\/\/ichef.bbci.co.uk\/images\/ic\/$recipe\/p082hykf.jpg","mediaType":"video","mediaForm":"clip","duration":"27:54"}},{"id":"42810179","promoType":"story","timestamp":"2020-03-17T15:15:56+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/13DDA\/production\/_102207318_mediaitem102207317.jpg","imgAlt":"A single discarded plastic water bottle on a sandy beach","headline":"Guide: Why is plastic a problem?","summary":"More than eight million tonnes of plastic goes into the world's oceans each year. That's a lot of plastic which can harm animals and the environment. So what's being done about it?","href":"\/newsround\/42810179","includeComments":false},{"id":"48352689","promoType":"story","timestamp":"2019-06-04T06:04:16+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/2037\/production\/_107074280_trumpindex.jpg","imgAlt":"trump-wall","headline":"Living with the wall: A Newsround special","summary":"Newsround has been to the US-Mexico border to find out more about US President Donald Trump's proposed border wall. Watch the series of special reports.","href":"\/newsround\/48352689","includeComments":true},{"id":"25036313","promoType":"story","timestamp":"2019-02-15T07:11:23+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/7427\/production\/_92653792_anxiety.jpg","imgAlt":"Cartoon","headline":"What is anxiety?","summary":"Newsround spoke to mental health charity Mind to find out more about anxiety and what you can do if you're worried you might be experiencing it.","href":"\/newsround\/25036313","includeComments":false},{"id":"49997791","promoType":"story","timestamp":"2019-10-10T10:23:16+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/6273\/production\/_95330252_whatismentalhealth.jpg","imgAlt":"mental-health-problem-graphic.","headline":"What is a mental health problem?","summary":"If you break your arm or catch a cold, it is more obvious to see that you are poorly. If you have a mental health problem, it can be harder to spot.","href":"\/newsround\/49997791","includeComments":false},{"id":"44503109","promoType":"media","timestamp":"2018-06-18T05:48:33+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/617A\/production\/_103645942_windrush-index.jpg","imgAlt":"Maya in a blue top, Levi in a red top, both smiling at the camera.","headline":"Finding My Family - Windrush","summary":"Maya and Levi head to the Caribbean to find out about where their grandparents grew up, and why they moved to the UK as part of a historic period that changed the face of Britain","href":"\/newsround\/44503109","includeComments":false,"videoOptions":{"title":"Finding My Family - Windrush: A Newsround Special","app_name":"newsround","app_type":"responsive","sessionLabels":{"bbc_site":"cbbc","nr_player_type":"in_situ"},"pid":"p06b6wkx","vpid":"p06b6wl2","holdingImageUrl":"\/\/web.archive.org\/web\/20200531140253\/https:\/\/ichef.bbci.co.uk\/images\/ic\/$recipe\/p06b6wm4.jpg","mediaType":"video","mediaForm":"clip","duration":"27:19"}},{"id":"40848395","promoType":"media","timestamp":"2017-08-08T10:11:06+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/14931\/production\/_97237248_titleslateweb.jpg","imgAlt":"Finding My Family graphic","headline":"Finding My Family - Partition","summary":"Sumayyah, Shubhashukla and Kamolpriya are on the mission of their lives to find out what happened to their families during the Partition of India.","href":"\/newsround\/40848395","includeComments":false,"videoOptions":{"title":"Watch Finding My Family - Partition: A Newsround Special","app_name":"newsround","app_type":"responsive","sessionLabels":{"bbc_site":"cbbc","nr_player_type":"in_situ"},"pid":"p05bv3k7","vpid":"p05bv3k9","holdingImageUrl":"\/\/web.archive.org\/web\/20200531140253\/https:\/\/ichef.bbci.co.uk\/images\/ic\/$recipe\/p05bv3lz.jpg","mediaType":"video","mediaForm":"clip","duration":"23:43"}}]}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52860398/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52860398":15}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52838131/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52838131":19}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52760018/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52760018":2}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52825455/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52825455":10}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52818553/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52818553":6}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52806820/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52806820":52}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52503088/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52503088":12}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52806640/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52806640":19}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52805854/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52805854":3}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52800146/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52800146":4}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52711367/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52711367":19}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-dynamic-feature-toggles/id/homepage/isiteproject/nrconfigs/version/undefined', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"optimizely":"true","superpromo":"true","NEWSROUND-312-single-top-story":"true","NEWSROUND-366-homepage-scroll-tracking":"true","NEWSROUND-448-new-bulletin":"true","NEWSROUND-450-additional-top-stories":"true","NEWSROUND-516-cpv-homepage":"true"}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52506961/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52506961":131}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52680422/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52680422":34}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52676231/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52676231":215}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52648129/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52648129":10}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52018134/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52018134":58}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52769868/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52769868":8}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52230222/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52230222":10}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52810167/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52810167":4}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52673146/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52673146":17}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52180192/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52180192":0}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__51976450/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__51976450":3}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__51476191/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__51476191":11}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__51441467/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__51441467":0}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__51415843/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__51415843":55}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__51387735/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__51387735":0}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__51266124/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__51266124":0}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52545218/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52545218":41}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52527526/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52527526":92}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-dynamic-feature-toggles/id/global/isiteproject/nrconfigs/version/1.1.1', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"chartbeat":"true","NEWSROUND-445-canvas":"true","canvas":"true","newsround-comments-signposting":"true","cloud-idcta":"true","NEWSROUND-409-reverb-stats":"true","NEWSROUND-463-LIVE-reverb-stats":"true","NEWSROUND-473-hide-h1-by-default":"false","NEWSROUND-481-reverb-custom-vars":"true","NEWSROUND-482-timestamp-abbreviation":"true","NEWSROUND-446-amp-stories":"true"}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52813673/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52813673":97}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52823401/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52823401":89}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52845966/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52845966":8}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52845629/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52845629":21}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52842067/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52842067":0}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52834343/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52834343":5}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52822683/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52822683":13}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__47218511/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__47218511":2}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52746347/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52746347":21}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52766497/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52766497":28}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52630243/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52630243":72}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52796502/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52796502":141}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52771968/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52771968":26}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52663704/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52663704":246}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__51877454/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__51877454":48}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52151617/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52151617":8}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52648988/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52648988":7}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__49766312/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__49766312":14}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__46103360/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__46103360":1}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-newsround-index-promos-data/assetUri/newsround%2Fhome/previewGuid/undefined/semanticGroupName/Superpromo/version/4.0.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"name":null,"items":[]}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-newsround-index-promos-data/assetUri/newsround%2Fhome/previewGuid/undefined/semanticGroupName/Top%20Stories/version/4.0.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"name":"Top Stories","items":[{"id":"52526849","promoType":"story","timestamp":"2020-05-31T10:18:50+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/6528\/production\/_112569852_gettyimages-1216401230.jpg","imgAlt":"SpaceX-rocket-launch.","headline":"Astronauts make history with SpaceX launch","summary":"Spaceship is in orbit above the Earth as it heads towards International Space Station","href":"\/newsround\/52526849","includeComments":true},{"id":"52813673","promoType":"story","timestamp":"2020-05-31T08:10:39+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/10EFF\/production\/_112557396_photo30-05-2020082853.jpg","imgAlt":"George-Floyd-Protests.","headline":"Protests continue in 30 US cities","summary":"Police and protesters across the US clash on the fifth day of demonstrations.","href":"\/newsround\/52813673","includeComments":true},{"id":"52866488","promoType":"story","timestamp":"2020-05-31T08:46:37+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/14B78\/production\/_112565848_gettyimages-1209423875.jpg","imgAlt":"woman looking out of window","headline":"People shielding in England allowed outside from Monday","summary":"Under new rules 2.2 million vulnerable people in England will be allowed outside for the first time in weeks.","href":"\/newsround\/52866488","includeComments":true},{"id":"52860398","promoType":"story","timestamp":"2020-05-30T14:08:11+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/14088\/production\/_112565028_gettyimages-1215846828.jpg","imgAlt":"lifeguard-station.","headline":"Not all beaches will have lifeguards on duty this summer","summary":"\"Lifeguards can't be everywhere this summer\" say water safety charity","href":"\/newsround\/52860398","includeComments":true},{"id":"52823401","promoType":"story","timestamp":"2020-05-30T06:52:31+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/17767\/production\/_112530169_index.jpg","imgAlt":"girl-on-her-phone","headline":"VOTE: How has lockdown been making you feel?","summary":"Childline says lots of young people have been calling them during lockdown. We want to know how the situation has been making you feel.","href":"\/newsround\/52823401","includeComments":true},{"id":"52845966","promoType":"story","timestamp":"2020-05-31T07:23:09+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/1725F\/production\/_112551849_gettyimages-838258840.jpg","imgAlt":"planets.","headline":"The Earth-sized planet orbiting our nearest star","summary":"Proxima b was first discovered back in 2016, but new technologies have allowed scientists to confirm this Earth-like planet's existence.","href":"\/newsround\/52845966","includeComments":true},{"id":"52845835","promoType":"media","timestamp":"2020-05-29T06:34:03+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/5004\/production\/_112548402_p08fgtrn.jpg","imgAlt":"Students","headline":"Answers to your questions about going back to school","summary":"BBC's education expert answers your questions about going back to school.","href":"\/newsround\/52845835","includeComments":false,"videoOptions":{"title":"Your questions about going back to school answered","app_name":"newsround","app_type":"responsive","sessionLabels":{"bbc_site":"cbbc","nr_player_type":"in_situ"},"pid":"p08fhkfs","vpid":"p08fhkfx","holdingImageUrl":"\/\/web.archive.org\/web\/20200531140253\/https:\/\/ichef.bbci.co.uk\/images\/ic\/$recipe\/p08fhkn8.jpg","mediaType":"video","mediaForm":"clip","duration":"2:17"}}]}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-newsround-index-promos-data/assetUri/newsround%2Fhome/previewGuid/undefined/semanticGroupName/Best%20videos/version/4.0.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"name":null,"items":[]}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-newsround-index-data/assetUri/newsround%2Fhome/previewGuid/undefined/semanticGroupName/Watch%20Newsround/version/4.0.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"content-type":"application\/json"}},"body":{"group":{"type":"responsive-video","title":"Watch Newsround","items":[{"assetId":"51311428","assetUri":"\/newsround\/news\/watch_newsround","firstCreated":"2020-01-30T11:14:24+00:00","headline":"Watch Newsround","language":"en-gb","lastUpdated":"2020-05-31T13:22:40+00:00","media":{"images":{"index":{"112571031":{"height":576,"width":1024,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/32D9\/production\/_112571031_p08fp8vy.jpg","originCode":"cpsprodpb","altText":"De'Graft in the Newsround studio","copyrightHolder":"BBC","allowSyndication":false}},"index-thumbnail":{"112570094":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/BF6F\/production\/_112570094_p08fp4n8.jpg","originCode":"cpsprodpb","altText":"De'Graft in the Newsround studio","copyrightHolder":"BBC","allowSyndication":true}}},"videos":{"index":{"52869779":{"caption":"Watch Newsround","entityType":"Clip","externalId":"p08fp8t9"}},"primary":{"52869779":{"caption":"Watch Newsround","entityType":"Clip","externalId":"p08fp8t9"}}}},"mediaType":"Video","options":{"isBreakingNews":false,"isFactCheck":false},"overtypedHeadline":"Watch Newsround ","section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"De'Graft has your Sunday Newsround update. See yesterday's launch of the SpaceX rocket, the latest news on the protests in America, and how 10-year-old Lucy is feeling about going back to school.","type":"MAP"}],"semanticGroupName":"Watch Newsround"}}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-newsround-index-promos-data/assetUri/newsround%2Fhome/previewGuid/undefined/semanticGroupName/More%20stories%202/version/4.0.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"name":"Coronavirus","items":[{"id":"51204456","promoType":"story","timestamp":"2020-05-18T12:49:08+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/8E76\/production\/_112107463_thumbnail.jpg","imgAlt":"NHS in a rainbow heart","headline":"Coronavirus: What is being done to tackle the virus?","summary":"Schools have closed, people have been told to stay at home and scientists and governments are working hard to stop the spread of the coronavirus and find a vaccine. Here's the latest on what's being done about it.","href":"\/newsround\/51204456","includeComments":true},{"id":"52200989","promoType":"story","timestamp":"2020-05-12T06:22:34+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/168D9\/production\/_111877329_coronavirusmasks.jpg","imgAlt":"coronavirus-masks.","headline":"Coronavirus: What's the latest advice about masks?","summary":"You might have seen lots of people wearing masks and wondering whether you should be wearing one too. Here's the latest guidance and advice.","href":"\/newsround\/52200989","includeComments":true},{"id":"52630243","promoType":"story","timestamp":"2020-05-22T16:53:34+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/B84F\/production\/_112238174_mask.jpg","imgAlt":"facemasks.","headline":"How to make your own face covering","summary":"If you want to make yourself a face covering or mask there's a DIY idea or two here that might help you.","href":"\/newsround\/52630243","includeComments":true},{"id":"52804397","promoType":"story","timestamp":"2020-05-26T07:48:17+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/E7A1\/production\/_112479295_shutterstock1.jpg","imgAlt":"high-street.","headline":"Will shops be opening again soon?","summary":"UK Prime Minister Boris Johnson has said that shops will open again soon","href":"\/newsround\/52804397","includeComments":true},{"id":"52796502","promoType":"story","timestamp":"2020-05-26T06:10:32+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/16371\/production\/_112439909_mediaitem112439907.jpg","imgAlt":"Dominic Cummings","headline":"Who is Dominic Cummings and why is everyone talking about him?","summary":"The prime minister's chief adviser, Dominic Cummings has been accused of breaking lockdown rules earlier this year. He says he's done nothing wrong.","href":"\/newsround\/52796502","includeComments":true},{"id":"52393241","promoType":"story","timestamp":"2020-05-22T15:31:50+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/BCC8\/production\/_111882384_gettyimages-1134900343.jpg","imgAlt":"School-classroom-sits-empty.","headline":"What do we know about when schools will re-open?","summary":"Schools in the UK are closed to everyone except vulnerable children and pupils whose parents are key workers, but when could they reopen?","href":"\/newsround\/52393241","includeComments":false},{"id":"51887051","promoType":"media","timestamp":"2020-05-19T11:41:57+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/12A89\/production\/_112352467_p08dkzt5.jpg","imgAlt":"Keyframe #9","headline":"Coronavirus: Advice if you're worried about it","summary":"Psychologist Laverne Antrobus has some tips if you're feeling worried or anxious about the coronavirus.","href":"\/newsround\/51887051","includeComments":false,"videoOptions":{"title":"Coronavirus: Advice if you're worried about it","app_name":"newsround","app_type":"responsive","sessionLabels":{"bbc_site":"cbbc","nr_player_type":"in_situ"},"pid":"p08dkz42","vpid":"p08dkz46","holdingImageUrl":"\/\/web.archive.org\/web\/20200531140253\/https:\/\/ichef.bbci.co.uk\/images\/ic\/$recipe\/p08dkzt5.jpg","mediaType":"video","mediaForm":"clip","duration":"1:49"}},{"id":"52506961","promoType":"story","timestamp":"2020-05-26T05:24:53+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/13466\/production\/_112105987_gettyimages-982755994.jpg","imgAlt":"boy-sleeping","headline":"Coronavirus having impact on children's sleep","summary":"Covid-19 is having a huge impact on children's sleep. But why do we dream? Have you been having stranger dreams than normal? And what can we do to stop nightmares from happening? Newsround spoke to sleep physiologist Stephanie Romiszewski to find out.","href":"\/newsround\/52506961","includeComments":true},{"id":"52771968","promoType":"story","timestamp":"2020-05-22T15:12:03+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/14AF1\/production\/_112412748_gettyimages-1212169322.jpg","imgAlt":"Child in classroom","headline":"Government scientists publish advice on going back to school","summary":"Scientists advising the government on when schools should reopen have published their findings.","href":"\/newsround\/52771968","includeComments":true},{"id":"52680422","promoType":"story","timestamp":"2020-05-21T14:01:14+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/056D\/production\/_112398310_mediaitem112398301.jpg","imgAlt":"Nicola-Sturgeon-speaking-at-Scottish-government.","headline":"Children in Scotland won't go back to school until August","summary":"Schools will not reopen until the new school year begins on 11 August, First Minister Nicola Sturgeon has announced.","href":"\/newsround\/52680422","includeComments":true},{"id":"52653333","promoType":"media","timestamp":"2020-05-14T05:39:38+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/10F50\/production\/_112265496_p08d2l8v.jpg","imgAlt":"Keyframe #5","headline":"What's it like going back to school after lockdown?","summary":"Children in Denmark have been back in school for over a month now - how are things going?","href":"\/newsround\/52653333","includeComments":false,"videoOptions":{"title":"What's it like going to school after lockdown?","app_name":"newsround","app_type":"responsive","sessionLabels":{"bbc_site":"cbbc","nr_player_type":"in_situ"},"pid":"p08d2hfg","vpid":"p08d2hfj","holdingImageUrl":"\/\/web.archive.org\/web\/20200531140253\/https:\/\/ichef.bbci.co.uk\/images\/ic\/$recipe\/p08d2l8v.jpg","mediaType":"video","mediaForm":"clip","duration":"2:00"}},{"id":"52735223","promoType":"story","timestamp":"2020-05-20T08:53:12+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/A18D\/production\/_112375314_fe9f617b-f0bb-4a4c-9211-ba103301457e.jpg","imgAlt":"Handwashing","headline":"Experts: 'Wash your hands at least SIX times a day'","summary":"There is new research that suggests we should be washing our hands at least six times a day because it strongly reduces the chance of catching infections.","href":"\/newsround\/52735223","includeComments":false},{"id":"52663704","promoType":"story","timestamp":"2020-05-16T08:21:25+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/AABB\/production\/_112270734_gettyimages-1164902889.jpg","imgAlt":"Schoolbag","headline":"Vote: How do YOU feel about going back to school?","summary":"Some pupils in England could be going back to class at the start of June after spending many weeks home-learning. Are you excited about the idea or would you prefer not to go back - like in Scotland, Wales and Northern Ireland? Have your say and let us know.","href":"\/newsround\/52663704","includeComments":true},{"id":"52676231","promoType":"story","timestamp":"2020-05-18T05:16:54+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/3D78\/production\/_112163751_teachersjpg.jpg","imgAlt":"kids-look-at-computer-teacher.","headline":"Send in: We want your questions about school for the man in charge of them","summary":"What do you want to know about school right now? Send us your questions for Gavin Williamson - he's the government's Education Secretary, and is in charge of all schools in England.","href":"\/newsround\/52676231","includeComments":true},{"id":"52131937","promoType":"story","timestamp":"2020-05-18T14:59:34+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/4877\/production\/_111515581_gettyimages-1208595556.jpg","imgAlt":"woman-lab-testing.","headline":"What's happening with coronavirus testing?","summary":"What is coronavirus testing? Why is everyone talking about it? And what are the different types?","href":"\/newsround\/52131937","includeComments":true},{"id":"51312911","promoType":"story","timestamp":"2020-05-05T06:40:41+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/494F\/production\/_111976781_mediaitem111976780.jpg","imgAlt":"A small bottle labeled with a \"Vaccine\" sticker is held near a medical syringe","headline":"Coronavirus: How do vaccines work?","summary":"Read this Newsround guide to find out more about vaccines and how long it could take to create one for coronavirus.","href":"\/newsround\/51312911","includeComments":false},{"id":"52648129","promoType":"story","timestamp":"2020-05-15T08:41:11+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/A184\/production\/_112284314_mentalhealthlockdownindex.jpg","imgAlt":"girl-looking-stressed-stay-home-keep-distance-dont-panic","headline":"Mental health in lockdown: How have you been affected?","summary":"New research from the charity Place2Be has shown that many young people they work with have been speaking about the same issues - loneliness, worries over school work and family relationships.","href":"\/newsround\/52648129","includeComments":true},{"id":"52351553","promoType":"story","timestamp":"2020-05-16T08:41:17+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/2BC7\/production\/_111870211_supersix.jpg","imgAlt":"Composite-of-6-dogs.","headline":"Could dogs be used to test people for coronavirus?","summary":"Scientists think specially trained dogs may be able to tell if someone has the virus based on their smell.","href":"\/newsround\/52351553","includeComments":true},{"id":"52227592","promoType":"media","timestamp":"2020-04-12T10:44:19+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/10E3D\/production\/_111718196_p0892v48.jpg","imgAlt":"Child-in-kitchen.","headline":"100 activity ideas you can do indoors during lockdown","summary":"The Scouts have put together a big list of fun activities for you to do when you're at home looking for inspiration.","href":"\/newsround\/52227592","includeComments":false,"videoOptions":{"title":"100 activity ideas you do indoors during lockdown","app_name":"newsround","app_type":"responsive","sessionLabels":{"bbc_site":"cbbc","nr_player_type":"in_situ"},"pid":"p0892r84","vpid":"p0892r89","holdingImageUrl":"\/\/web.archive.org\/web\/20200531140253\/https:\/\/ichef.bbci.co.uk\/images\/ic\/$recipe\/p0892v48.jpg","mediaType":"video","mediaForm":"clip","duration":"1:04"}},{"id":"52658861","promoType":"story","timestamp":"2020-05-14T11:20:15+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/7112\/production\/_112264982_de30.jpg","imgAlt":"coronavirus-asthma-inhaler.","headline":"Coronavirus and asthma: Your questions answered","summary":"Many of you have sent in questions asking about how to stay safe if you already have a condition called asthma. so we asked an expert","href":"\/newsround\/52658861","includeComments":true},{"id":"51877454","promoType":"story","timestamp":"2020-05-18T10:33:41+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/12FCB\/production\/_111717777_3_nrcor_tom7.jpg","imgAlt":"coronavirus","headline":"Frequently asked questions about coronavirus","summary":"We've put some of the most frequently asked questions about coronavirus into a handy guide.","href":"\/newsround\/51877454","includeComments":true},{"id":"52538074","promoType":"media","timestamp":"2020-05-05T06:48:01+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/B735\/production\/_112110964_p08c7fxt.jpg","imgAlt":"dr-xand.","headline":"Watch Dr Xand鈥檚 coronavirus video diary","summary":"Dr Xand from CBBC's Operation Ouch! tells us how he felt each day he was ill and how after he started to get better.","href":"\/newsround\/52538074","includeComments":false,"videoOptions":{"title":"Operation Ouch Virus Alert 4","app_name":"newsround","app_type":"responsive","sessionLabels":{"bbc_site":"cbbc","nr_player_type":"in_situ"},"pid":"p08c7fkw","vpid":"p08c7fky","holdingImageUrl":"\/\/web.archive.org\/web\/20200531140253\/https:\/\/ichef.bbci.co.uk\/images\/ic\/$recipe\/p08c7fxt.jpg","mediaType":"video","mediaForm":"clip","duration":"1:57"}},{"id":"52300064","promoType":"media","timestamp":"2020-04-22T05:43:08+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/5782\/production\/_111820422_nrkeykids1.jpg","imgAlt":"key-worker-graphic","headline":"Coronavirus: The key workers' children still at school","summary":"Lots of you are staying home with your families at the moment, but what about those of you with parents or guardians who are key workers and still have to go to school?","href":"\/newsround\/52300064","includeComments":false,"videoOptions":{"title":"Coronavirus: still at school","app_name":"newsround","app_type":"responsive","sessionLabels":{"bbc_site":"cbbc","nr_player_type":"in_situ"},"pid":"p089kmbz","vpid":"p089kmc1","holdingImageUrl":"\/\/web.archive.org\/web\/20200531140253\/https:\/\/ichef.bbci.co.uk\/images\/ic\/$recipe\/p089ksqn.jpg","mediaType":"video","mediaForm":"clip","duration":"1:43"}},{"id":"52280887","promoType":"story","timestamp":"2020-04-18T09:15:53+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/22CC\/production\/_111780980_gettyimages-1208003898.jpg","imgAlt":"mask-gloves-hospital.","headline":"What is PPE & why is it in the news?","summary":"What is PPE, why is it important, and why are people talking about it?","href":"\/newsround\/52280887","includeComments":true},{"id":"52357183","promoType":"media","timestamp":"2020-05-20T06:44:01+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/158FD\/production\/_111871388_p08b29ym.jpg","imgAlt":"dr ranj","headline":"Dr Ranj answers kids' questions about coronavirus","summary":"We know you have got loads of questions about coronavirus and about how we're living right now, so here's doctor and Strictly star Ranj Singh to answer some of them.","href":"\/newsround\/52357183","includeComments":false,"videoOptions":{"title":"Dr Ranj answers kids' questions about coronavirus","app_name":"newsround","app_type":"responsive","sessionLabels":{"bbc_site":"cbbc","nr_player_type":"in_situ"},"pid":"p08dl1kt","vpid":"p08dl1kw","holdingImageUrl":"\/\/web.archive.org\/web\/20200531140253\/https:\/\/ichef.bbci.co.uk\/images\/ic\/$recipe\/p08dl6gc.jpg","mediaType":"video","mediaForm":"clip","duration":"2:30"}},{"id":"52314760","promoType":"media","timestamp":"2020-04-17T08:44:00+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/2079\/production\/_111831380_p089r79z.jpg","imgAlt":"paul-and-freddy.","headline":"Paul & Freddy's mental health top tips","summary":"Newsround spoke to mental health coach Paul and his son Freddy, they do lots of work around mental health and have got some top tips to help you stay positive!","href":"\/newsround\/52314760","includeComments":false,"videoOptions":{"title":"Paul & Freddy's mental health top tips","app_name":"newsround","app_type":"responsive","sessionLabels":{"bbc_site":"cbbc","nr_player_type":"in_situ"},"pid":"p089r71f","vpid":"p089r71l","holdingImageUrl":"\/\/web.archive.org\/web\/20200531140253\/https:\/\/ichef.bbci.co.uk\/images\/ic\/$recipe\/p089r79z.jpg","mediaType":"video","mediaForm":"clip","duration":"1:14"}},{"id":"52214311","promoType":"media","timestamp":"2020-04-14T06:07:49+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/990D\/production\/_111718193_p0892rv3.jpg","imgAlt":"Keyframe #1","headline":"Worship during the Coronavirus","summary":"Due to the current social distancing measures, going out to your local church or synagogue isn't really allowed. However, some people are finding new ways to practice their faith at home.","href":"\/newsround\/52214311","includeComments":false,"videoOptions":{"title":"Worship during the Coronavirus","app_name":"newsround","app_type":"responsive","sessionLabels":{"bbc_site":"cbbc","nr_player_type":"in_situ"},"pid":"p0892rh2","vpid":"p0892rh5","holdingImageUrl":"\/\/web.archive.org\/web\/20200531140253\/https:\/\/ichef.bbci.co.uk\/images\/ic\/$recipe\/p0892rv3.jpg","mediaType":"video","mediaForm":"clip","duration":"1:48"}},{"id":"52096366","promoType":"media","timestamp":"2020-04-03T08:03:29+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/ADD9\/production\/_111550544_gettyimages-1195910993.jpg","imgAlt":"hand-holding-a-phone-with-fake-news-on-the-screen-other-hand-about-to-press-share-on-the-screen","headline":"How to spot fake virus news","summary":"Fake news or misinformation about the coronavirus is spreading on the internet. Marianna Spring, a disinformation reporter at the BBC, tells us how we can spot it.","href":"\/newsround\/52096366","includeComments":false,"videoOptions":{"title":"How to spot fake news","app_name":"newsround","app_type":"responsive","sessionLabels":{"bbc_site":"cbbc","nr_player_type":"in_situ"},"pid":"p088jx6v","vpid":"p088jx6z","holdingImageUrl":"\/\/web.archive.org\/web\/20200531140253\/https:\/\/ichef.bbci.co.uk\/images\/ic\/$recipe\/p088jx97.jpg","mediaType":"video","mediaForm":"clip","duration":"2:00"}},{"id":"52156671","promoType":"story","timestamp":"2020-04-03T14:46:21+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/A64A\/production\/_111607524_gettyimages-619269222.jpg","imgAlt":"child-on-phone.","headline":"Worried about coronavirus? The BBC Own It app can help","summary":"The Own It keyboard can now recognise language related to coronavirus and provide advice to support users who may have fears or worries about it.","href":"\/newsround\/52156671","includeComments":false},{"id":"52018134","promoType":"story","timestamp":"2020-03-25T06:28:57+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/117D8\/production\/_111404617_title_-still_00078.png","imgAlt":"title-card","headline":"How to BOSS being stuck at home!","summary":"So you're stuck at home - here are some expert tips on looking after yourself","href":"\/newsround\/52018134","includeComments":true},{"id":"51989370","promoType":"media","timestamp":"2020-03-29T13:38:07+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/108EA\/production\/_111381876_p0878y4y.jpg","imgAlt":"Domino","headline":"Social distancing explained - with dominoes","summary":"Wondering how social distancing protects people from the coronavirus? Martin explains with help from his domino set.","href":"\/newsround\/51989370","includeComments":false,"videoOptions":{"title":"Dominoes show how social distancing can help","app_name":"newsround","app_type":"responsive","sessionLabels":{"bbc_site":"cbbc","nr_player_type":"in_situ"},"pid":"p0878wwm","vpid":"p0878wwp","holdingImageUrl":"\/\/web.archive.org\/web\/20200531140253\/https:\/\/ichef.bbci.co.uk\/images\/ic\/$recipe\/p0878ylr.jpg","mediaType":"video","mediaForm":"clip","duration":"1:08"}},{"id":"51698180","promoType":"media","timestamp":"2020-05-05T08:15:53+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/179ED\/production\/_111094769_p0859hzb.jpg","imgAlt":"how to wash your hands.","headline":"How to wash your hands","summary":"It's really important to wash your hands to stop the spread of germs. Here's the best way to do it.","href":"\/newsround\/51698180","includeComments":false,"videoOptions":{"title":"How to wash your hands","app_name":"newsround","app_type":"responsive","sessionLabels":{"bbc_site":"cbbc","nr_player_type":"in_situ"},"pid":"p0859hdj","vpid":"p0859hdl","holdingImageUrl":"\/\/web.archive.org\/web\/20200531140253\/https:\/\/ichef.bbci.co.uk\/images\/ic\/$recipe\/p0859hzb.jpg","mediaType":"video","mediaForm":"clip","duration":"0:43"}},{"id":"51959552","promoType":"media","timestamp":"2020-03-23T11:34:02+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/1812D\/production\/_111350689_p0871sr2.jpg","imgAlt":"DR James and his dog Oliver","headline":"Advice on looking after pets during Coronavirus","summary":"Dr James and dog, Oliver from The Pets Factor tell us how to keep your pet safe during Coronavirus","href":"\/newsround\/51959552","includeComments":false,"videoOptions":{"title":"Advice on looking after pets during Coronavirus","app_name":"newsround","app_type":"responsive","sessionLabels":{"bbc_site":"cbbc","nr_player_type":"in_situ"},"pid":"p0871sl2","vpid":"p0871sl6","holdingImageUrl":"\/\/web.archive.org\/web\/20200531140253\/https:\/\/ichef.bbci.co.uk\/images\/ic\/$recipe\/p0871sr2.jpg","mediaType":"video","mediaForm":"clip","duration":"2:43"}}]}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52526849/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52526849":31}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52845580/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52845580":24}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52826468/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52826468":3}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52835753/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52835753":11}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52830491/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52830491":33}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52823058/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52823058":3}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52804397/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52804397":40}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52487582/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52487582":6}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52500501/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52500501":7}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__51266122/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__51266122":9}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__51368413/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__51368413":1}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__51266123/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__51266123":13}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__45576191/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__45576191":13}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52565132/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52565132":33}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__45435173/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__45435173":29}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52649183/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52649183":6}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52410744/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52410744":23}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__51388287/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__51388287":7}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-cs-asset/assetUri/newsround%252fhome/previewGuid/undefined/version/1.5.1', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"assetId":"43745086","assetUri":"\/newsround\/home","firstCreated":"2018-04-12T14:56:30+00:00","firstPublished":"2018-04-12T15:09:30+00:00","groups":[{"type":"responsive-top-stories","title":"Top Stories","maxRelatedLinks":6,"items":[{"assetId":"52526849","assetUri":"\/newsround\/52526849","firstCreated":"2020-05-04T07:49:46+00:00","hasShortForm":true,"headline":"Astronauts make history with SpaceX launch","includeComments":true,"language":"en-gb","lastUpdated":"2020-05-31T10:18:50+00:00","media":{"images":{"index":{"112569852":{"height":1152,"width":2048,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/6528\/production\/_112569852_gettyimages-1216401230.jpg","originCode":"cpsprodpb","altText":"SpaceX-rocket-launch.","copyrightHolder":"Getty Images","allowSyndication":true}},"index-thumbnail":{"112521091":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/4A44\/production\/_112521091_gettyimages-1226094542.jpg","originCode":"cpsprodpb","altText":"astronauts.","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Spaceship is in orbit above the Earth as it heads towards International Space Station","type":"STY"},{"assetId":"52813673","assetUri":"\/newsround\/52813673","firstCreated":"2020-05-27T15:10:45+00:00","hasShortForm":true,"headline":"Protests continue in 30 US cities","includeComments":true,"language":"en-gb","lastUpdated":"2020-05-31T08:10:39+00:00","media":{"images":{"index":{"112557396":{"height":1152,"width":2048,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/10EFF\/production\/_112557396_photo30-05-2020082853.jpg","originCode":"cpsprodpb","altText":"George-Floyd-Protests.","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Police and protesters across the US clash on the fifth day of demonstrations.","type":"STY"},{"assetId":"52866488","assetUri":"\/newsround\/52866488","firstCreated":"2020-05-31T08:46:37+00:00","hasShortForm":true,"headline":"People shielding in England allowed outside from Monday","includeComments":true,"language":"en-gb","lastUpdated":"2020-05-31T08:46:37+00:00","media":{"images":{"index":{"112565848":{"height":549,"width":976,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/14B78\/production\/_112565848_gettyimages-1209423875.jpg","originCode":"cpsprodpb","altText":"woman looking out of window","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Under new rules 2.2 million vulnerable people in England will be allowed outside for the first time in weeks.","type":"STY"},{"assetId":"52860398","assetUri":"\/newsround\/52860398","firstCreated":"2020-05-30T14:08:11+00:00","hasShortForm":true,"headline":"Not all beaches will have lifeguards on duty this summer","includeComments":true,"language":"en-gb","lastUpdated":"2020-05-30T14:08:11+00:00","media":{"images":{"index":{"112565028":{"height":576,"width":1024,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/14088\/production\/_112565028_gettyimages-1215846828.jpg","originCode":"cpsprodpb","altText":"lifeguard-station.","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"\"Lifeguards can't be everywhere this summer\" say water safety charity","type":"STY"},{"assetId":"52823401","assetUri":"\/newsround\/52823401","firstCreated":"2020-05-29T05:46:12+00:00","hasShortForm":true,"headline":"VOTE: How has lockdown been making you feel?","includeComments":true,"language":"en-gb","lastUpdated":"2020-05-30T06:52:31+00:00","media":{"images":{"index":{"112530169":{"height":1152,"width":2048,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/17767\/production\/_112530169_index.jpg","originCode":"cpsprodpb","altText":"girl-on-her-phone","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Childline says lots of young people have been calling them during lockdown. We want to know how the situation has been making you feel.","type":"STY"},{"assetId":"52845966","assetUri":"\/newsround\/52845966","firstCreated":"2020-05-30T06:51:54+00:00","hasShortForm":true,"headline":"The Earth-sized planet orbiting our nearest star","includeComments":true,"language":"en-gb","lastUpdated":"2020-05-31T07:23:09+00:00","media":{"images":{"index":{"112551849":{"height":549,"width":976,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/1725F\/production\/_112551849_gettyimages-838258840.jpg","originCode":"cpsprodpb","caption":"Proxima Centauri is the closest planet to our solar system","altText":"planets.","copyrightHolder":"Getty Images","allowSyndication":true}},"index-thumbnail":{"112551851":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/3DC7\/production\/_112551851_gettyimages-838258840.jpg","originCode":"cpsprodpb","caption":"Proxima Centauri is the closest planet to our solar system","altText":"planets.","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Proxima b was first discovered back in 2016, but new technologies have allowed scientists to confirm this Earth-like planet's existence.","type":"STY"},{"assetId":"52845835","assetUri":"\/newsround\/52845835","firstCreated":"2020-05-29T06:34:03+00:00","headline":"Answers to your questions about going back to school","language":"en-gb","lastUpdated":"2020-05-29T06:34:03+00:00","media":{"images":{"index":{"112548402":{"height":576,"width":1024,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/5004\/production\/_112548402_p08fgtrn.jpg","originCode":"cpsprodpb","altText":"Students","copyrightHolder":"BBC","allowSyndication":false}}},"videos":{"index":{"52845836":{"caption":"Your questions about going back to school answered","entityType":"Clip","externalId":"p08fhkfs"}},"primary":{"52845836":{"caption":"Your questions about going back to school answered","entityType":"Clip","externalId":"p08fhkfs"}}}},"mediaType":"Video","options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"BBC's education expert answers your questions about going back to school.","type":"MAP"}],"semanticGroupName":"Top Stories"},{"type":"responsive-video","title":"Watch Newsround","items":[{"assetId":"51311428","assetUri":"\/newsround\/news\/watch_newsround","firstCreated":"2020-01-30T11:14:24+00:00","headline":"Watch Newsround","language":"en-gb","lastUpdated":"2020-05-31T13:22:40+00:00","media":{"images":{"index":{"112571031":{"height":576,"width":1024,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/32D9\/production\/_112571031_p08fp8vy.jpg","originCode":"cpsprodpb","altText":"De'Graft in the Newsround studio","copyrightHolder":"BBC","allowSyndication":false}},"index-thumbnail":{"112570094":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/BF6F\/production\/_112570094_p08fp4n8.jpg","originCode":"cpsprodpb","altText":"De'Graft in the Newsround studio","copyrightHolder":"BBC","allowSyndication":true}}},"videos":{"index":{"52869779":{"caption":"Watch Newsround","entityType":"Clip","externalId":"p08fp8t9"}},"primary":{"52869779":{"caption":"Watch Newsround","entityType":"Clip","externalId":"p08fp8t9"}}}},"mediaType":"Video","options":{"isBreakingNews":false,"isFactCheck":false},"overtypedHeadline":"Watch Newsround ","section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"De'Graft has your Sunday Newsround update. See yesterday's launch of the SpaceX rocket, the latest news on the protests in America, and how 10-year-old Lucy is feeling about going back to school.","type":"MAP"}],"semanticGroupName":"Watch Newsround"},{"type":"responsive-cluster","title":"Slice 1 - Dark purple with teal index card","strapline":{"name":"More Stories"},"items":[{"assetTypeCode":"PRO","contentType":"Text","firstCreated":"2020-03-02T11:52:03+00:00","lastUpdated":"2020-03-02T11:52:03+00:00","links":{"highweb":"https:\/\/web.archive.org\/web\/20200531140253\/https:\/\/www.bbc.co.uk\/newsround#more-stories-2","desktop":"https:\/\/web.archive.org\/web\/20200531140253\/https:\/\/www.bbc.co.uk\/newsround#more-stories-2"},"media":{"images":{"index":{"111717775":{"height":1080,"width":1920,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/E1AB\/production\/_111717775_1_nrcor_tom9.jpg","originCode":"cpsprodpb","altText":"coronavirus","copyrightHolder":"BBC","allowSyndication":true}}}},"options":{},"summary":"Take a look at all of our content about the coronavirus and what it means for you.","title":"Coronavirus: Everything you need to know","type":"LINK"},{"assetId":"52852636","assetUri":"\/newsround\/52852636","firstCreated":"2020-05-29T16:20:35+00:00","hasShortForm":true,"headline":"Are you ready for Sonic 2?","includeComments":true,"language":"en-gb","lastUpdated":"2020-05-30T06:52:05+00:00","media":{"images":{"index":{"112557390":{"height":1051,"width":1869,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/249F\/production\/_112557390_sonic2.jpg","originCode":"cpsprodpb","altText":"Sonic.","copyrightHolder":"Paramount Pictures","allowSyndication":false}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"News","id":"101227","uri":"\/newsround\/news","urlIdentifier":"\/newsround\/news"},"summary":"After the success of the first movie it has been announced that there will be a Sonic the Hedgehog 2, so what do we know so far about the speedy sequel?","type":"STY"},{"assetId":"52837288","assetUri":"\/newsround\/52837288","firstCreated":"2020-05-28T15:15:22+00:00","hasShortForm":true,"headline":"Liverpool could win Premier League title at neutral ground","includeComments":true,"language":"en-gb","lastUpdated":"2020-05-29T14:27:05+00:00","media":{"images":{"index":{"112554766":{"height":1152,"width":2048,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/104B9\/production\/_112554766_photo29-05-2020142324.jpg","originCode":"cpsprodpb","altText":"Trent-Alexander-Arnold-Premier-League-trophy.","copyrightHolder":"Getty\/ Premier League","allowSyndication":false}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"News","id":"101227","uri":"\/newsround\/news","urlIdentifier":"\/newsround\/news"},"summary":"Up to six Premier League matches could be played at neutral venues, including Liverpool's title decider.","type":"STY"},{"assetId":"52838131","assetUri":"\/newsround\/52838131","firstCreated":"2020-05-28T17:15:56+00:00","hasShortForm":true,"headline":"What is the latest lockdown advice?","includeComments":true,"language":"en-gb","lastUpdated":"2020-05-30T09:12:59+00:00","media":{"images":{"index":{"112563767":{"height":576,"width":1024,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/12BC0\/production\/_112563767_gettyimages-1215846830-1.jpg","originCode":"cpsprodpb","altText":"Beach-in-the-UK","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"passport":{"category":{"categoryId":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/www.bbc.co.uk\/ontologies\/applicationlogic-news\/News","categoryName":"News"}},"section":{"name":"News","id":"101227","uri":"\/newsround\/news","urlIdentifier":"\/newsround\/news"},"summary":"There's a warning from scientists about relaxing lockdown too soon, with plans to ease rules from Monday in England.","type":"STY"},{"assetId":"52838577","assetUri":"\/newsround\/52838577","firstCreated":"2020-05-29T05:18:20+00:00","headline":"European Space Agency turns 45!","includeComments":true,"language":"en-gb","lastUpdated":"2020-05-30T06:12:45+00:00","media":{"images":{"index":{"112543277":{"height":549,"width":976,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/12DB2\/production\/_112543277_5b841a09-db82-4974-924c-8f0be7c0039c.jpg","originCode":"cpsprodpb","altText":"Solar Orbiter","copyrightHolder":"ESA","allowSyndication":false}},"index-thumbnail":{"112543279":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/17BD2\/production\/_112543279_5b841a09-db82-4974-924c-8f0be7c0039c.jpg","originCode":"cpsprodpb","altText":"Solar Orbiter","copyrightHolder":"ESA","allowSyndication":false}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Newsround takes a look at the exciting projects the agency is currently working on to help boost our understanding of space.","type":"STY"},{"assetId":"52760018","assetUri":"\/newsround\/52760018","firstCreated":"2020-05-29T12:33:00+00:00","hasShortForm":true,"headline":"Naomi Osaka becomes the highest-paid female athlete ever","includeComments":true,"language":"en-gb","lastUpdated":"2020-05-29T12:33:00+00:00","media":{"images":{"index":{"103327379":{"height":576,"width":1024,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/17C5C\/production\/_103327379_osaka_wins_reuters.jpg","originCode":"cpsprodpb","altText":"Naomi Osaka","copyrightHolder":"Reuters","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"The list of the highest-paid sports stars, by business magazine Forbes, has been released.","type":"STY"},{"assetId":"52845580","assetUri":"\/newsround\/52845580","firstCreated":"2020-05-29T06:38:33+00:00","hasShortForm":true,"headline":"Little Mix's Leigh-Anne is getting married!","includeComments":true,"language":"en-gb","lastUpdated":"2020-05-29T06:38:33+00:00","media":{"images":{"index":{"112549893":{"height":549,"width":976,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/9BD6\/production\/_112549893_gettyimages-1061546364.jpg","originCode":"cpsprodpb","altText":"andre-gray-and-leigh-anne-pinnock.","copyrightHolder":"Getty Images","allowSyndication":true}},"index-thumbnail":{"112549895":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/E9F6\/production\/_112549895_gettyimages-1061546364.jpg","originCode":"cpsprodpb","altText":"andre-gray-and-leigh-anne-pinnock.","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"The Little Mixer is engaged to her partner of four years, footballer Andre Gray.","type":"STY"},{"assetId":"52845629","assetUri":"\/newsround\/52845629","firstCreated":"2020-05-29T09:08:28+00:00","hasShortForm":true,"headline":"President Trump takes 'big action' against social media","includeComments":true,"language":"en-gb","lastUpdated":"2020-05-29T09:08:28+00:00","media":{"images":{"index":{"112551253":{"height":576,"width":1024,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/898F\/production\/_112551253_gettyimages-1227630799.jpg","originCode":"cpsprodpb","altText":"donald-trump.","copyrightHolder":"Getty Images","allowSyndication":true}},"index-thumbnail":{"112551255":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/D7AF\/production\/_112551255_gettyimages-1227630799.jpg","originCode":"cpsprodpb","altText":"donald-trump.","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"US President Donal Trump has been arguing with social media companies after they did something he didn't like.","type":"STY"},{"assetId":"52847195","assetUri":"\/newsround\/52847195","firstCreated":"2020-05-29T14:00:33+00:00","hasShortForm":true,"headline":"Five celebs smashing the Wipe It Down challenge","includeComments":true,"language":"en-gb","lastUpdated":"2020-05-29T14:00:33+00:00","media":{"images":{"index":{"112555533":{"height":576,"width":1024,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/8313\/production\/_112555533_montage.jpg","originCode":"cpsprodpb","altText":"will-smith-jojo-siwa-jason-derulo.","copyrightHolder":"Tiktok","allowSyndication":false}},"index-thumbnail":{"112555538":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/14663\/production\/_112555538_montage.jpg","originCode":"cpsprodpb","altText":"will-smith-jojo-siwa-jason-derulo.","copyrightHolder":"Tiktok","allowSyndication":false}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"The Wipe It Down challenge is going strong on TikTok, so here are five celebs who are smashing it!","type":"STY"},{"assetId":"48460961","assetUri":"\/newsround\/48460961","firstCreated":"2019-05-30T13:18:11+00:00","headline":"What's the best biscuit on the planet?","includeComments":true,"language":"en-gb","lastUpdated":"2020-05-28T15:38:17+00:00","media":{"images":{"index":{"107166165":{"height":549,"width":976,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/DB66\/production\/_107166165_mediaitem107164992.jpg","originCode":"cpsprodpb","altText":"Child-stealing-a-chocolate-biscuit","copyrightHolder":"Getty Images","allowSyndication":true}},"index-thumbnail":{"107166164":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/B456\/production\/_107166164_mediaitem107164992.jpg","originCode":"cpsprodpb","altText":"Child-stealing-a-chocolate-biscuit","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"A National Biscuit Day survey reckons it has figured out the UK's top biscuits, but did your favourite make the grade?","type":"STY"},{"assetId":"52839153","assetUri":"\/newsround\/52839153","firstCreated":"2020-05-29T05:48:00+00:00","headline":"Going back to school: 'I'm really excited about seeing my friends'","language":"en-gb","lastUpdated":"2020-05-29T05:48:00+00:00","media":{"images":{"index":{"112545760":{"height":576,"width":1024,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/1A62\/production\/_112545760_p08fg296.jpg","originCode":"cpsprodpb","altText":"Lucy-smiling","copyrightHolder":"BBC","allowSyndication":true}},"index-thumbnail":{"112545759":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/1760A\/production\/_112545759_p08fg296.jpg","originCode":"cpsprodpb","altText":"Lucy-smiling","copyrightHolder":"BBC","allowSyndication":true}}},"videos":{"index":{"52839155":{"caption":"Going back to school: 'I'm really excited about seeing my friends'","entityType":"Clip","externalId":"p08fg1vx"}},"primary":{"52839155":{"caption":"Going back to school: 'I'm really excited about seeing my friends'","entityType":"Clip","externalId":"p08fg1vx"}}}},"mediaType":"Video","options":{"isBreakingNews":false,"isFactCheck":false},"passport":{"category":{"categoryId":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/www.bbc.co.uk\/ontologies\/applicationlogic-news\/News","categoryName":"News"}},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Some schools in England will open their doors once more to year 6, year 1, reception and nursery on 1 June. We spoke to 10-year-old Lucy about how she's feeling about going back.","type":"MAP"},{"assetId":"52842067","assetUri":"\/newsround\/52842067","firstCreated":"2020-05-29T12:19:57+00:00","hasShortForm":true,"headline":"FA Cup set to kick off again from end of June","includeComments":true,"language":"en-gb","lastUpdated":"2020-05-29T12:19:57+00:00","media":{"images":{"index":{"112554759":{"height":892,"width":1585,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/17601\/production\/_112554759_facup.jpg","originCode":"cpsprodpb","altText":"FA-Cup.","copyrightHolder":"Getty\/ FA","allowSyndication":false}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Plans are being put in place for the FA Cup final to be held on 1 August with quarter-finals resuming on 27 June if given approval by UK government","type":"STY"},{"assetId":"52837287","assetUri":"\/newsround\/52837287","firstCreated":"2020-05-29T08:28:15+00:00","hasShortForm":true,"headline":"Was that the last Clap for Carers... for now?","language":"en-gb","lastUpdated":"2020-05-29T08:28:15+00:00","media":{"images":{"index":{"112543443":{"height":576,"width":1024,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/8682\/production\/_112543443_gettyimages-1222080899-1.jpg","originCode":"cpsprodpb","altText":"Clap-For-Carers.","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"News","id":"101227","uri":"\/newsround\/news","urlIdentifier":"\/newsround\/news"},"summary":"Could last night's clap for carers be the last one until next year?","type":"STY"},{"assetId":"52839244","assetUri":"\/newsround\/52839244","firstCreated":"2020-05-29T05:56:03+00:00","headline":"What is a contact tracing app and how does it work?","language":"en-gb","lastUpdated":"2020-05-29T05:56:03+00:00","media":{"images":{"index":{"112549528":{"height":1152,"width":2048,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/142A2\/production\/_112549528_mediaitem112549527.jpg","originCode":"cpsprodpb","altText":"how-does-contact-tracing-work","copyrightHolder":"BBC","allowSyndication":true}}},"videos":{"index":{"52839245":{"caption":"Contact Tracing App: What is it?","entityType":"Clip","externalId":"p08ff5g2"}},"primary":{"52839245":{"caption":"Contact Tracing App: What is it?","entityType":"Clip","externalId":"p08ff5g2"}}}},"mediaType":"Video","options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"There are lot's of things being used in the fight against coronavirus and the latest one is an app!","type":"MAP"},{"assetId":"52825455","assetUri":"\/newsround\/52825455","firstCreated":"2020-05-29T05:18:07+00:00","hasShortForm":true,"headline":"Could we be back in cinemas from July?","includeComments":true,"language":"en-gb","lastUpdated":"2020-05-29T05:18:07+00:00","media":{"images":{"index":{"112537822":{"height":1152,"width":2048,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/5959\/production\/_112537822_gettyimages-1221521514-1.jpg","originCode":"cpsprodpb","altText":"Going-to-the-cinema-during-coronavirus.","copyrightHolder":"Getty Images","allowSyndication":true}},"index-thumbnail":{"112540657":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/12754\/production\/_112540657_popcorn.jpg","originCode":"cpsprodpb","altText":"Popcorn","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Cineworld and Odeon are planning to reopen from July with new rules in place to reduce the risk of coronavirus spreading.","type":"STY"},{"assetId":"51318780","assetUri":"\/newsround\/51318780","firstCreated":"2020-01-31T06:52:56+00:00","hasShortForm":true,"headline":"Quiz: Have you been following this week's news?","language":"en-gb","lastUpdated":"2020-05-29T05:17:05+00:00","media":{"images":{"index":{"112538181":{"height":576,"width":1024,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/4707\/production\/_112538181_backgroundwithloogoo.jpg","originCode":"cpsprodpb","altText":"Quiz of the week","copyrightHolder":"BBC","allowSyndication":true}},"index-thumbnail":{"112538183":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/9527\/production\/_112538183_backgroundwithloogoo.jpg","originCode":"cpsprodpb","altText":"Quiz of the week","copyrightHolder":"BBC","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Have you been keeping up with the news this week? Test yourself with the Quiz of the Week!","type":"STY"},{"assetId":"43245617","assetUri":"\/newsround\/43245617","firstCreated":"2018-03-02T06:46:57+00:00","headline":"Strange News","language":"en-gb","lastUpdated":"2020-05-29T05:17:21+00:00","media":{"images":{"index":{"112524513":{"height":575,"width":1024,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/7B36\/production\/_112524513_p08fdg6z.jpg","originCode":"cpsprodpb","altText":"Man surfing and strange logo","copyrightHolder":"BBC","allowSyndication":false}},"index-thumbnail":{"112524515":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/C956\/production\/_112524515_p08fdg6z.jpg","originCode":"cpsprodpb","altText":"Man surfing and strange logo","copyrightHolder":"BBC","allowSyndication":false}}},"videos":{"index":{"52821416":{"caption":"Strange News","entityType":"Clip","externalId":"p08fdg5f"}},"primary":{"52821416":{"caption":"Strange News","entityType":"Clip","externalId":"p08fdg5f"}}}},"mediaType":"Video","options":{"isBreakingNews":false,"isFactCheck":false},"passport":{"category":{"categoryId":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/www.bbc.co.uk\/ontologies\/applicationlogic-news\/Feature","categoryName":"Feature"}},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Shanequa has your strangest stories for this week. We've got an encounter with a grizzly bear, surfing a river and a drive-in concert!!","type":"MAP"},{"assetId":"52826468","assetUri":"\/newsround\/52826468","firstCreated":"2020-05-28T16:07:42+00:00","hasShortForm":true,"headline":"What's going on between Hong Kong and China?","includeComments":true,"language":"en-gb","lastUpdated":"2020-05-28T16:07:42+00:00","media":{"images":{"index":{"112409324":{"height":549,"width":976,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/A596\/production\/_112409324_gettyimages-1212447977.jpg","originCode":"cpsprodpb","altText":"Pro-democracy demonstrators calling for the city's independence protest in Tsim Sha Tsui waterfront in Hong Kong on May 10, 2020","copyrightHolder":"ISAAC LAWRENCE\/AFP","allowSyndication":false}},"index-thumbnail":{"112540081":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/4654\/production\/_112540081_gettyimages-1212447977.jpg","originCode":"cpsprodpb","altText":"Pro-democracy demonstrators calling for the city's independence protest in Tsim Sha Tsui waterfront in Hong Kong on May 10, 2020","copyrightHolder":"AFP","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"News","id":"101227","uri":"\/newsround\/news","urlIdentifier":"\/newsround\/news"},"summary":"What's behind China's proposed new security law for Hong Kong and why has it triggered mass protests in the region.","type":"STY"},{"assetId":"52821345","assetUri":"\/newsround\/52821345","firstCreated":"2020-05-28T06:44:29+00:00","hasShortForm":true,"headline":"How will schools change to help keep you safe?","includeComments":true,"language":"en-gb","lastUpdated":"2020-05-28T10:40:27+00:00","media":{"images":{"index":{"112270738":{"height":549,"width":976,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/146FB\/production\/_112270738_gettyimages-1164902889.jpg","originCode":"cpsprodpb","altText":"Schoolbag and books","copyrightHolder":"Getty Images","allowSyndication":true}},"index-thumbnail":{"112526752":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/64A2\/production\/_112526752_gettyimages-1164902889.jpg","originCode":"cpsprodpb","altText":"Schoolbag and books","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"passport":{"category":{"categoryId":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/www.bbc.co.uk\/ontologies\/applicationlogic-news\/News","categoryName":"News"}},"section":{"name":"News","id":"101227","uri":"\/newsround\/news","urlIdentifier":"\/newsround\/news"},"summary":"From class sizes, PPE and general protection, here's all we know about the latest advice on going back to school.","type":"STY"},{"assetId":"52835753","assetUri":"\/newsround\/52835753","firstCreated":"2020-05-28T12:40:33+00:00","hasShortForm":true,"headline":"How Scotland's lockdown will look from Friday","includeComments":true,"language":"en-gb","lastUpdated":"2020-05-28T12:40:33+00:00","media":{"images":{"index":{"112528892":{"height":549,"width":976,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/74BA\/production\/_112528892_061637098-1.jpg","originCode":"cpsprodpb","caption":"Nicola Sturgeon has maintained the \"stay at home\" slogan in Scotland","altText":"Nicola Sturgeon","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"First Minister Nicola Sturgeon has announced that Scotland will begin to ease coronavirus lockdown rules from Friday. Here's all you need to know on the latest update.","type":"STY"},{"assetId":"52830492","assetUri":"\/newsround\/52830492","firstCreated":"2020-05-28T13:19:53+00:00","hasShortForm":true,"headline":"Ninja is hosting a Fortnite competition","includeComments":true,"language":"en-gb","lastUpdated":"2020-05-28T13:19:53+00:00","media":{"images":{"index":{"112537701":{"height":576,"width":1024,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/2A15\/production\/_112537701_gettyimages-1206602477.jpg","originCode":"cpsprodpb","altText":"ninja.","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Gaming steamer Ninja is hosting his own gaming competition!","type":"STY"},{"assetId":"52830491","assetUri":"\/newsround\/52830491","firstCreated":"2020-05-28T11:20:39+00:00","hasShortForm":true,"headline":"Vote: Should console apps limit your gaming time?","includeComments":true,"language":"en-gb","lastUpdated":"2020-05-28T12:06:05+00:00","media":{"images":{"index":{"112537132":{"height":576,"width":1024,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/5A85\/production\/_112537132_vote1.jpg","originCode":"cpsprodpb","altText":"gaming-vote.","copyrightHolder":"Getty Images","allowSyndication":true}},"index-thumbnail":{"112537134":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/A8A5\/production\/_112537134_vote1.jpg","originCode":"cpsprodpb","altText":"gaming-vote.","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"overtypedHeadline":"Should consoles limit your gaming time? ","section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Should parents be able to use console controls on their phones to decide how long you play videos games for?","type":"STY"},{"assetId":"52834343","assetUri":"\/newsround\/52834343","firstCreated":"2020-05-28T13:10:48+00:00","hasShortForm":true,"headline":"BLACKPINK and Lady Gaga have a new song together!","includeComments":true,"language":"en-gb","lastUpdated":"2020-05-28T13:10:48+00:00","media":{"images":{"index":{"112538051":{"height":549,"width":976,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/3AEB\/production\/_112538051_blackpink.jpg","originCode":"cpsprodpb","altText":"lady-gaga-and-blackpink.","copyrightHolder":"Getty Images","allowSyndication":true}},"index-thumbnail":{"112538053":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/890B\/production\/_112538053_blackpink.jpg","originCode":"cpsprodpb","altText":"lady-gaga-and-blackpink.","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"The pop icon has teamed up with K-Pop mega stars BLACKPINK on a brand-new track called Sour Candy.","type":"STY"},{"assetId":"52830119","assetUri":"\/newsround\/52830119","firstCreated":"2020-05-28T07:52:29+00:00","hasShortForm":true,"headline":"What is the new NHS test and trace system?","includeComments":true,"language":"en-gb","lastUpdated":"2020-05-28T07:52:49+00:00","media":{"images":{"index":{"112533004":{"height":549,"width":976,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/9C61\/production\/_112533004_gettyimages-1214527741.jpg","originCode":"cpsprodpb","caption":"Those who've tested positive for the virus will be contacted either by text, email or a phone call","altText":"woman-with-gloves-and-mask-holding-phone.","copyrightHolder":"Getty Images","allowSyndication":true}},"index-thumbnail":{"112533066":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/101F1\/production\/_112533066_gettyimages-1214527741.jpg","originCode":"cpsprodpb","caption":"Those who've tested positive for the virus will be contacted either by text, email or a phone call","altText":"woman-with-gloves-and-mask-holding-phone.","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"overtypedHeadline":"How does NHS test and trace work?","section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"The government launches its new test and trace service today to help tackle the spread of the coronavirus.","type":"STY"},{"assetId":"52831552","assetUri":"\/newsround\/52831552","firstCreated":"2020-05-28T10:47:12+00:00","hasShortForm":true,"headline":"Virtual Eisteddfod 'has been incredible'!","includeComments":true,"language":"en-gb","lastUpdated":"2020-05-28T10:55:27+00:00","media":{"images":{"index":{"112535913":{"height":576,"width":1024,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/7CD1\/production\/_112535913_gettyimages-556634605.jpg","originCode":"cpsprodpb","altText":"marquee-and-welsh-dragon.","copyrightHolder":"Getty Images","allowSyndication":true}},"index-thumbnail":{"112535915":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/CAF1\/production\/_112535915_gettyimages-556634605.jpg","originCode":"cpsprodpb","altText":"marquee-and-welsh-dragon.","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"The Welsh youth festival is being held online this year for the very time in its history.","type":"STY"},{"assetId":"52830196","assetUri":"\/newsround\/52830196","firstCreated":"2020-05-28T06:32:09+00:00","hasShortForm":true,"headline":"Bad weather delays Space X launch","includeComments":true,"language":"en-gb","lastUpdated":"2020-05-28T10:35:41+00:00","media":{"images":{"index":{"112532971":{"height":432,"width":768,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/4603\/production\/_112532971_tv061659789.jpg","originCode":"cpsprodpb","altText":"rocket","copyrightHolder":"NASA","allowSyndication":false}},"index-thumbnail":{"112532662":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/67FF\/production\/_112532662_janeobrien.jpg","originCode":"cpsprodpb","altText":"VAB","copyrightHolder":"Jane O'Brien\/BBC","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Nasa and Space X's rocket mission has been delayed by bad weather, but it's not all over and they'll try again at the weekend.","type":"STY"},{"assetId":"52822683","assetUri":"\/newsround\/52822683","firstCreated":"2020-05-28T08:18:04+00:00","hasShortForm":true,"headline":"The milkshake-coloured moth causing a stir online","includeComments":true,"language":"en-gb","lastUpdated":"2020-05-28T08:18:04+00:00","media":{"images":{"index":{"112526076":{"height":549,"width":976,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/105F6\/production\/_112526076_gettyimages-1146662108.jpg","originCode":"cpsprodpb","altText":"Pink and yellow moth.","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"We often think of butterflies are being pretty and colourful, and moths as being a bit dull. But it's not true of these guys!","type":"STY"},{"assetId":"52830770","assetUri":"\/newsround\/52830770","firstCreated":"2020-05-28T08:34:01+00:00","hasShortForm":true,"headline":"The Duchess of Cornwall takes on James and the Giant Peach!","includeComments":true,"language":"en-gb","lastUpdated":"2020-05-28T08:34:50+00:00","media":{"images":{"index":{"112533074":{"height":549,"width":976,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/B7B9\/production\/_112533074_jamespeach.jpg","originCode":"cpsprodpb","altText":"duchess-of-cornwall-josh-gad-and-lupita-nyongo.","copyrightHolder":"Getty Images","allowSyndication":true}},"index-thumbnail":{"112533850":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/16C9\/production\/_112533850_jamespeach.jpg","originCode":"cpsprodpb","altText":"duchess-of-cornwall-josh-gad-and-lupita-nyongo.","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"The Duchess joins a number of famous faces for a special reading of Roald Dahl's much-loved novel.","type":"STY"},{"assetId":"52830244","assetUri":"\/newsround\/52830244","firstCreated":"2020-05-28T06:06:56+00:00","hasShortForm":true,"headline":"Pigeon 'spy' arrested in India","includeComments":true,"language":"en-gb","lastUpdated":"2020-05-28T06:28:32+00:00","media":{"images":{"index":{"112532963":{"height":974,"width":1732,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/903B\/production\/_112532963_pigeon.jpg","originCode":"cpsprodpb","altText":"pigeon spy","copyrightHolder":"Getty Images","allowSyndication":true}},"index-thumbnail":{"112532965":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/DE5B\/production\/_112532965_gettyimages-157635879.jpg","originCode":"cpsprodpb","altText":"pigeon","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"The owner of a pigeon held by India for spying says his bird was freed for Eid and is innocent.","type":"STY"},{"assetId":"52821768","assetUri":"\/newsround\/52821768","firstCreated":"2020-05-27T15:57:13+00:00","hasShortForm":true,"headline":"How to make a suncatcher","includeComments":true,"language":"en-gb","lastUpdated":"2020-05-28T05:53:37+00:00","media":{"images":{"index":{"112532413":{"height":1080,"width":1920,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/7ABF\/production\/_112532413_finalmake.png","originCode":"cpsprodpb","altText":"sun catcher","copyrightHolder":"Ruby and Raylee\/Youtube","allowSyndication":false}},"index-thumbnail":{"112532415":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/C8DF\/production\/_112532415_finalmake.png","originCode":"cpsprodpb","altText":"sun catcher","copyrightHolder":"Ruby and Raylee\/Youtube","allowSyndication":false}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"YouTubers and sisters Ruby and Raylee teach us how to make suncatchers for your window at home","type":"STY"},{"assetId":"52755625","assetUri":"\/newsround\/52755625","firstCreated":"2020-05-28T05:18:44+00:00","headline":"Xavier Woods: 'WWE can help make E-Sports bigger'","language":"en-gb","lastUpdated":"2020-05-28T05:20:35+00:00","media":{"images":{"index":{"112532410":{"height":1152,"width":2048,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/058F\/production\/_112532410_91748592_1557468474418549_7233896572067512320_o.jpg","originCode":"cpsprodpb","altText":"Xavier Woods","copyrightHolder":"Xavier Woods\/Facebook","allowSyndication":false}},"index-thumbnail":{"112419235":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/D02B\/production\/_112419235_p08dyd0d.jpg","originCode":"cpsprodpb","altText":"Xavier Woods","copyrightHolder":"BBC","allowSyndication":true}}},"videos":{"index":{"52755626":{"caption":"Xavier Woods: WWE can help make E-Sports even bigger","entityType":"Clip","externalId":"p08dybsw"}},"primary":{"52755626":{"caption":"Xavier Woods: WWE can help make E-Sports even bigger","entityType":"Clip","externalId":"p08dybsw"}}}},"mediaType":"Video","options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"WWE wrestler Xavier Woods tells Newsround about his love for gaming and how he thinks wrestling can help make E-Sports even bigger","type":"MAP"},{"assetId":"52823058","assetUri":"\/newsround\/52823058","firstCreated":"2020-05-28T05:41:53+00:00","hasShortForm":true,"headline":"Green spaces 'must be protected and enhanced'","includeComments":true,"language":"en-gb","lastUpdated":"2020-05-28T06:07:59+00:00","media":{"images":{"index":{"112528448":{"height":549,"width":976,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/14A02\/production\/_112528448_fc44399dde081d98da5a78e5d502eab3_f224.jpg","originCode":"cpsprodpb","caption":"The Derby Arboretum was the first public park in Britain","altText":"The-Derby-Arboretum","copyrightHolder":"Visit Derby","allowSyndication":false}},"index-thumbnail":{"112532744":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/AEB3\/production\/_112532744_photo26-03-2020135549.jpg","originCode":"cpsprodpb","altText":"A-UK-Green-Space.","copyrightHolder":"Tom Burrows\/BBC","allowSyndication":false}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Field In Trust say homes could be built on green space that has been vital for mental wellbeing during coronavirus.","type":"STY"},{"assetId":"52817090","assetUri":"\/newsround\/52817090","firstCreated":"2020-05-27T07:53:42+00:00","hasShortForm":true,"headline":"Are you reading The Ickabog? Send us your reviews!","includeComments":true,"language":"en-gb","lastUpdated":"2020-05-27T07:53:42+00:00","media":{"images":{"index":{"112502841":{"height":549,"width":976,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/39E4\/production\/_112502841_ickabog.png","originCode":"cpsprodpb","altText":"Front page of The Ickabog","copyrightHolder":"J.K. Rowling","allowSyndication":false}},"index-thumbnail":{"112521698":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/15E0C\/production\/_112521698_ickabog.png","originCode":"cpsprodpb","altText":"Front page of The Ickabog","copyrightHolder":"J.K. Rowling","allowSyndication":false}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"It's a brand new book written by J.K. Rowling, and the first two chapters have already been published on her website.","type":"STY"},{"assetId":"52818553","assetUri":"\/newsround\/52818553","firstCreated":"2020-05-27T13:48:26+00:00","hasShortForm":true,"headline":"Could Tokyo Disneyland reopen with 'no screaming' rule?","includeComments":true,"language":"en-gb","lastUpdated":"2020-05-27T13:48:26+00:00","media":{"images":{"index":{"112525125":{"height":549,"width":976,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/CBB8\/production\/_112525125_shutterstock_editorial_10524242j.jpg","originCode":"cpsprodpb","altText":"Minnie Mouse in Disneyland Tokyo","copyrightHolder":"Shutterstock","allowSyndication":false}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"The suggested guidelines are to keep people safe when theme parks reopen following coronavirus.","type":"STY"},{"assetId":"52788389","assetUri":"\/newsround\/52788389","firstCreated":"2020-05-24T12:31:25+00:00","hasShortForm":true,"headline":"Why are there more protests in Hong Kong?","includeComments":true,"language":"en-gb","lastUpdated":"2020-05-27T12:15:29+00:00","media":{"images":{"index":{"112432034":{"height":549,"width":976,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/A80F\/production\/_112432034_aaaaa061604812-1.jpg","originCode":"cpsprodpb","altText":"HK","copyrightHolder":"Reuters","allowSyndication":true}},"index-thumbnail":{"112432178":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/15453\/production\/_112432178_gettyimages-1214817117.jpg","originCode":"cpsprodpb","altText":"hong-kong-protesters-holding-banners","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"There's been more protests in Hong Kong, but what's happening and what's behind it?","type":"STY"},{"assetId":"52806820","assetUri":"\/newsround\/52806820","firstCreated":"2020-05-27T06:09:44+00:00","hasShortForm":true,"headline":"Which of these would be your top celeb supply teacher?","includeComments":true,"language":"en-gb","lastUpdated":"2020-05-27T06:09:44+00:00","media":{"images":{"index":{"112516827":{"height":1152,"width":2048,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/11C9D\/production\/_112516827_index.jpg","originCode":"cpsprodpb","altText":"nikki-lilly-ellie-simmonds-tim-peake-marcus-rashford","copyrightHolder":"Shutterstock \/ Getty Images","allowSyndication":false}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Astronaut Tim Peake, footballer Marcus Rashford and CBBC star Nikki Lily are just some of the people joining in.","type":"STY"},{"assetId":"52503088","assetUri":"\/newsround\/52503088","firstCreated":"2020-05-01T14:45:50+00:00","headline":"How football might look behind closed doors","includeComments":true,"language":"en-gb","lastUpdated":"2020-05-27T14:56:42+00:00","media":{"images":{"index":{"112069424":{"height":1152,"width":2048,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/A600\/production\/_112069424_gettyimages-1210873668.jpg","originCode":"cpsprodpb","altText":"Pictures of fans, players, coaches and staff of Bundesliga club Borussia Moenchengladbach are seen at Borussia-Park","copyrightHolder":"Christian Verheyen","allowSyndication":false}},"index-thumbnail":{"112077401":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/28ED\/production\/_112077401_gettyimages-1210873672.jpg","originCode":"cpsprodpb","altText":"Pictures of fans, players, coaches and staff of Bundesliga club Borussia Moenchengladbach are seen at Borussia-Park","copyrightHolder":"Christian Verheyen","allowSyndication":false}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Football clubs around the world are coming up with new ways to create an atmosphere during games played behind closed doors.","type":"STY"},{"assetId":"47218511","assetUri":"\/newsround\/47218511","firstCreated":"2019-02-12T17:21:16+00:00","hasShortForm":true,"headline":"What is blackface?","includeComments":true,"language":"en-gb","lastUpdated":"2020-05-27T11:11:51+00:00","media":{"images":{"index":{"112524702":{"height":549,"width":976,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/5106\/production\/_112524702_gettyimages-1060377808.jpg","originCode":"cpsprodpb","altText":"Jimmy Fallon","copyrightHolder":"Getty Images","allowSyndication":true}},"index-thumbnail":{"112524704":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/9F26\/production\/_112524704_gettyimages-1060377808.jpg","originCode":"cpsprodpb","altText":"Jimmy Fallon","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"US TV host Jimmy Fallon has apologised for darkening the skin on his face and hands - what's known as 'blackface' - in a Saturday Night Live sketch from 2000.","type":"STY"},{"assetId":"51376710","assetUri":"\/newsround\/51376710","firstCreated":"2020-02-04T17:42:31+00:00","headline":"Your Planet: the latest environment news","language":"en-gb","lastUpdated":"2020-05-27T07:07:00+00:00","media":{"images":{"index":{"112514836":{"height":576,"width":1024,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/F961\/production\/_112514836_p08f6nxy.jpg","originCode":"cpsprodpb","altText":"Earth from space","copyrightHolder":"BBC","allowSyndication":false}},"index-thumbnail":{"111032897":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/137CF\/production\/_111032897_p083t86g.jpg","originCode":"cpsprodpb","altText":"A picture of earth from space","copyrightHolder":"BBC","allowSyndication":true}}},"videos":{"index":{"52812397":{"caption":"Your Planet","entityType":"Clip","externalId":"p08f6k99"}},"primary":{"52812397":{"caption":"Your Planet","entityType":"Clip","externalId":"p08f6k99"}}}},"mediaType":"Video","options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Shanequa has all the latest news effecting your planet, including World Turtle Day and how Antarctica is turning green!","type":"MAP"},{"assetId":"52806640","assetUri":"\/newsround\/52806640","firstCreated":"2020-05-26T13:10:14+00:00","hasShortForm":true,"headline":"Crayons for all skin tones","includeComments":true,"language":"en-gb","lastUpdated":"2020-05-26T13:10:14+00:00","media":{"images":{"index":{"112483427":{"height":549,"width":976,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/11AF6\/production\/_112483427_crayola.jpg","originCode":"cpsprodpb","altText":"crayola-skin-colour-crayons.","copyrightHolder":"Crayola","allowSyndication":false}},"index-thumbnail":{"112483429":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/16916\/production\/_112483429_crayola.jpg","originCode":"cpsprodpb","altText":"crayola-skin-colour-crayons.","copyrightHolder":"Crayola","allowSyndication":false}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Crayola is releasing a line of crayons to reflect the different skin colours around the world","type":"STY"},{"assetId":"52805854","assetUri":"\/newsround\/52805854","firstCreated":"2020-05-26T12:59:20+00:00","hasShortForm":true,"headline":"How animals are helping to raise money during lockdown","includeComments":true,"language":"en-gb","lastUpdated":"2020-05-26T12:59:20+00:00","media":{"images":{"index":{"112478967":{"height":549,"width":976,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/12CBB\/production\/_112478967_zacdrawing.jpg","originCode":"cpsprodpb","altText":"Zach with his pictures.","copyrightHolder":"Jemma Walker","allowSyndication":false}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"These money-raising animals probably never expected their efforts to make such a big impact.","type":"STY"},{"assetId":"52812882","assetUri":"\/newsround\/52812882","firstCreated":"2020-05-27T06:19:33+00:00","hasShortForm":true,"headline":"Jacqueline Wilson gets 'silly' for Summer Reading Challenge","includeComments":true,"language":"en-gb","lastUpdated":"2020-05-27T06:19:33+00:00","media":{"images":{"index":{"109463599":{"height":549,"width":976,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/184D0\/production\/_109463599_gettyimages-482211501.jpg","originCode":"cpsprodpb","altText":"Jacqueline-wilson.","copyrightHolder":"Getty Images","allowSyndication":true}},"index-thumbnail":{"112520823":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/8022\/production\/_112520823_gettyimages-482211501.jpg","originCode":"cpsprodpb","altText":"Jacqueline-wilson.","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"News","id":"101227","uri":"\/newsround\/news","urlIdentifier":"\/newsround\/news"},"summary":"Several famous faces are saying 'let's get silly' for this year's Summer Reading Challenge.","type":"STY"},{"assetId":"52185414","assetUri":"\/newsround\/52185414","firstCreated":"2020-04-14T07:21:24+00:00","headline":"Bird girl: I won't stop 'trying to make things better'","language":"en-gb","lastUpdated":"2020-05-26T05:23:45+00:00","media":{"images":{"index":{"111632353":{"height":576,"width":1024,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/89FB\/production\/_111632353_p088t598.jpg","originCode":"cpsprodpb","altText":"Mya-Rose-Bird-girl.","copyrightHolder":"BBC Countryfile","allowSyndication":false}}},"videos":{"index":{"52185415":{"caption":"Bird Girl: I won't stop 'trying to make things better'","entityType":"Clip","externalId":"p088t4dz"}},"primary":{"52185415":{"caption":"Bird Girl: I won't stop 'trying to make things better'","entityType":"Clip","externalId":"p088t4dz"}}}},"mediaType":"Video","options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Meet the teenager known as Bird girl who is trying to improve diversity among young birdwatchers.","type":"MAP"},{"assetId":"52800146","assetUri":"\/newsround\/52800146","firstCreated":"2020-05-25T15:48:35+00:00","hasShortForm":true,"headline":"The Women's Super League and Women's Championship seasons have ended","includeComments":true,"language":"en-gb","lastUpdated":"2020-05-26T05:26:45+00:00","media":{"images":{"index":{"112441493":{"height":549,"width":976,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/99F6\/production\/_112441493_shutterstock_editorial_10559427ck.jpg","originCode":"cpsprodpb","caption":"Manchester City were at the top of the WSL table","altText":"female-football players.","copyrightHolder":"Shutterstock","allowSyndication":false}},"index-thumbnail":{"112441495":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/E816\/production\/_112441495_shutterstock_editorial_10559427ck.jpg","originCode":"cpsprodpb","caption":"Manchester City were at the top of the WSL table","altText":"female-football players.","copyrightHolder":"Shutterstock","allowSyndication":false}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"The FA Women's Super League (WSL) and Women's Championship Board have ended the 2019\/20 season league competitions.","type":"STY"},{"assetId":"52711367","assetUri":"\/newsround\/52711367","firstCreated":"2020-05-21T05:09:51+00:00","hasShortForm":true,"headline":"How to camp at home this half term","includeComments":true,"language":"en-gb","lastUpdated":"2020-05-26T05:47:24+00:00","media":{"images":{"index":{"112479446":{"height":549,"width":976,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/FBF1\/production\/_112479446_gettyimages-1187238432.jpg","originCode":"cpsprodpb","altText":"boy-in-tent.","copyrightHolder":"Getty Images","allowSyndication":true}},"index-thumbnail":{"112338415":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/C91B\/production\/_112338415_gettyimages-1216181170.jpg","originCode":"cpsprodpb","altText":"children-in-fort.","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Lots of you will be at home this half term, but that doesn't mean it has to be boring! Check out our tips for camping indoors.","type":"STY"},{"assetId":"52788644","assetUri":"\/newsround\/52788644","firstCreated":"2020-05-24T10:04:53+00:00","headline":"How hunting icy meteorites could protect Earth","language":"en-gb","lastUpdated":"2020-05-25T07:21:27+00:00","media":{"images":{"index":{"112425779":{"height":576,"width":1024,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/17DD8\/production\/_112425779_p08f23wg.jpg","originCode":"cpsprodpb","altText":"skiddo antarctica","copyrightHolder":"BBC","allowSyndication":true}},"index-thumbnail":{"112425778":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/156C8\/production\/_112425778_p08f23wg.jpg","originCode":"cpsprodpb","altText":"skiddo antarctica","copyrightHolder":"BBC","allowSyndication":true}}},"videos":{"index":{"52788645":{"caption":"Meteorites: How hunting them in Antarctica can help protect Earth","entityType":"Clip","externalId":"p08f0x5s"}},"primary":{"52788645":{"caption":"Meteorites: How hunting them in Antarctica can help protect Earth","entityType":"Clip","externalId":"p08f0x5s"}}}},"mediaType":"Video","options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Astronauts are on a mission to study meteorites found here on our own planet - hoping they can protect us in the future","type":"MAP"},{"assetId":"52746347","assetUri":"\/newsround\/52746347","firstCreated":"2020-05-23T06:25:24+00:00","hasShortForm":true,"headline":"How was Eid different this year?","includeComments":true,"language":"en-gb","lastUpdated":"2020-05-25T07:24:26+00:00","media":{"images":{"index":{"112385187":{"height":549,"width":976,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/1314E\/production\/_112385187_gettyimages-959924926.jpg","originCode":"cpsprodpb","altText":"Eid","copyrightHolder":"Getty Images","allowSyndication":true}},"index-thumbnail":{"112385189":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/17F6E\/production\/_112385189_gettyimages-959924926.jpg","originCode":"cpsprodpb","altText":"Eid","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Muslims celebrated Eid al-Fitr this weekend, but the coronavirus meant this year's celebrations were a little different.","type":"STY"},{"assetId":"52781543","assetUri":"\/newsround\/52781543","firstCreated":"2020-05-23T08:38:10+00:00","headline":"The Queen's 'Thank you' for Emilia","language":"en-gb","lastUpdated":"2020-05-23T10:43:21+00:00","media":{"images":{"index":{"112424264":{"height":549,"width":976,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/B4A2\/production\/_112424264_whatsappimage2020-05-23at07.28.47.jpg","originCode":"cpsprodpb","altText":"emilia-writing-a-letter-at-the-table","copyrightHolder":"Newsround ","allowSyndication":false}},"index-thumbnail":{"112423970":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/1EFC\/production\/_112423970_whatsappimage2020-05-23at07.28.47.jpg","originCode":"cpsprodpb","altText":"emilia-writing-a-letter-at-the-table","copyrightHolder":"Newsround ","allowSyndication":false}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Seven-year-old Emilia from Northamptonshire was worried that lockdown could be making the Queen lonely, so she decided to write her a letter to check in and to her surprise received one back!","type":"PGL"},{"assetId":"52766497","assetUri":"\/newsround\/52766497","firstCreated":"2020-05-22T07:19:27+00:00","hasShortForm":true,"headline":"Brothers find gold treasure while building a den!","includeComments":true,"language":"en-gb","lastUpdated":"2020-05-22T07:52:22+00:00","media":{"images":{"index":{"112410871":{"height":1080,"width":1920,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/4589\/production\/_112410871_goldbars.jpg","originCode":"cpsprodpb","altText":"gold-bars.","copyrightHolder":"Rouillac Auctioneers","allowSyndication":false}},"index-thumbnail":{"112410873":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/93A9\/production\/_112410873_goldbars.jpg","originCode":"cpsprodpb","altText":"gold-bars.","copyrightHolder":"Rouillac Auctioneers","allowSyndication":false}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"News","id":"101227","uri":"\/newsround\/news","urlIdentifier":"\/newsround\/news"},"summary":"It's not everyday you go to build a makeshift den in your garden - only to find 2kg of gold in the process!","type":"STY"}],"semanticGroupName":"More stories 1"},{"type":"responsive-cluster","title":"Slice 2 - Dark purple with pink index card","strapline":{"name":"Coronavirus"},"items":[{"assetId":"51204456","assetUri":"\/newsround\/51204456","firstCreated":"2020-01-22T10:09:43+00:00","headline":"Coronavirus: What is being done to tackle the virus?","includeComments":true,"language":"en-gb","lastUpdated":"2020-05-18T12:49:08+00:00","media":{"images":{"index":{"112107463":{"height":576,"width":1024,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/8E76\/production\/_112107463_thumbnail.jpg","originCode":"cpsprodpb","altText":"NHS in a rainbow heart","copyrightHolder":"Getty Images","allowSyndication":true}},"index-thumbnail":{"112107469":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/178D6\/production\/_112107469_thumbnail.jpg","originCode":"cpsprodpb","altText":"NHS in a rainbow heart","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Schools have closed, people have been told to stay at home and scientists and governments are working hard to stop the spread of the coronavirus and find a vaccine. Here's the latest on what's being done about it.","type":"STY"},{"assetId":"52200989","assetUri":"\/newsround\/52200989","firstCreated":"2020-04-08T14:45:32+00:00","hasShortForm":true,"headline":"Coronavirus: What's the latest advice about masks?","includeComments":true,"language":"en-gb","lastUpdated":"2020-05-12T06:22:34+00:00","media":{"images":{"index":{"111877329":{"height":549,"width":976,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/168D9\/production\/_111877329_coronavirusmasks.jpg","originCode":"cpsprodpb","altText":"coronavirus-masks.","copyrightHolder":"Getty Images","allowSyndication":true}},"index-thumbnail":{"111877331":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/3441\/production\/_111877331_coronavirusmasks.jpg","originCode":"cpsprodpb","altText":"coronavirus-masks.","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"News","id":"101227","uri":"\/newsround\/news","urlIdentifier":"\/newsround\/news"},"summary":"You might have seen lots of people wearing masks and wondering whether you should be wearing one too. Here's the latest guidance and advice.","type":"STY"},{"assetId":"52630243","assetUri":"\/newsround\/52630243","firstCreated":"2020-05-12T14:17:26+00:00","hasShortForm":true,"headline":"How to make your own face covering","includeComments":true,"language":"en-gb","lastUpdated":"2020-05-22T16:53:34+00:00","media":{"images":{"index":{"112238174":{"height":576,"width":1024,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/B84F\/production\/_112238174_mask.jpg","originCode":"cpsprodpb","altText":"facemasks.","copyrightHolder":"Getty Images","allowSyndication":true}},"index-thumbnail":{"112238172":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/6A2F\/production\/_112238172_gettyimages-1215224582.jpg","originCode":"cpsprodpb","altText":"facemask.","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"News","id":"101227","uri":"\/newsround\/news","urlIdentifier":"\/newsround\/news"},"summary":"If you want to make yourself a face covering or mask there's a DIY idea or two here that might help you.","type":"STY"},{"assetId":"52804397","assetUri":"\/newsround\/52804397","firstCreated":"2020-05-26T07:48:17+00:00","hasShortForm":true,"headline":"Will shops be opening again soon?","includeComments":true,"language":"en-gb","lastUpdated":"2020-05-26T07:48:17+00:00","media":{"images":{"index":{"112479295":{"height":576,"width":1024,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/E7A1\/production\/_112479295_shutterstock1.jpg","originCode":"cpsprodpb","altText":"high-street.","copyrightHolder":"Shutterstock","allowSyndication":false}},"index-thumbnail":{"112479297":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/135C1\/production\/_112479297_shutterstock1.jpg","originCode":"cpsprodpb","altText":"high-street.","copyrightHolder":"Shutterstock","allowSyndication":false}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"UK Prime Minister Boris Johnson has said that shops will open again soon","type":"STY"},{"assetId":"52796502","assetUri":"\/newsround\/52796502","firstCreated":"2020-05-25T13:25:21+00:00","hasShortForm":true,"headline":"Who is Dominic Cummings and why is everyone talking about him?","includeComments":true,"language":"en-gb","lastUpdated":"2020-05-26T06:10:32+00:00","media":{"images":{"index":{"112439909":{"height":549,"width":976,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/16371\/production\/_112439909_mediaitem112439907.jpg","originCode":"cpsprodpb","altText":"Dominic Cummings","copyrightHolder":"AFP","allowSyndication":true}},"index-thumbnail":{"112439389":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/18059\/production\/_112439389_shutterstock_editorial_10656964l.jpg","originCode":"cpsprodpb","altText":"dominic-cummings.","copyrightHolder":"Shutterstock","allowSyndication":false}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"The prime minister's chief adviser, Dominic Cummings has been accused of breaking lockdown rules earlier this year. He says he's done nothing wrong.","type":"STY"},{"assetId":"52393241","assetUri":"\/newsround\/52393241","firstCreated":"2020-04-23T09:13:20+00:00","headline":"What do we know about when schools will re-open?","language":"en-gb","lastUpdated":"2020-05-22T15:31:50+00:00","media":{"images":{"index":{"111882384":{"height":549,"width":976,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/BCC8\/production\/_111882384_gettyimages-1134900343.jpg","originCode":"cpsprodpb","altText":"School-classroom-sits-empty.","copyrightHolder":"Getty Images","allowSyndication":true}},"index-thumbnail":{"111914999":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/18665\/production\/_111914999_gettyimages-911029638.jpg","originCode":"cpsprodpb","altText":"girls at school","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Schools in the UK are closed to everyone except vulnerable children and pupils whose parents are key workers, but when could they reopen?","type":"STY"},{"assetId":"51887051","assetUri":"\/newsround\/51887051","firstCreated":"2020-03-14T12:32:34+00:00","headline":"Coronavirus: Advice if you're worried about it","language":"en-gb","lastUpdated":"2020-05-19T11:41:57+00:00","media":{"images":{"index":{"112352467":{"height":576,"width":1024,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/12A89\/production\/_112352467_p08dkzt5.jpg","originCode":"cpsprodpb","altText":"Keyframe #9","copyrightHolder":"BBC","allowSyndication":false}},"index-thumbnail":{"111260039":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/16B4E\/production\/_111260039_advice.jpg","originCode":"cpsprodpb","altText":"text-advice-if-you're-worried-about-the-coronavirus.","copyrightHolder":"BBC","allowSyndication":true}}},"videos":{"index":{"52724293":{"caption":"Dr Laverne gives her top tips on how to deal with feeling anxious about coronavirus","entityType":"Clip","externalId":"p08dkz42"}},"primary":{"52724293":{"caption":"Dr Laverne gives her top tips on how to deal with feeling anxious about coronavirus","entityType":"Clip","externalId":"p08dkz42"}}}},"mediaType":"Video","options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Psychologist Laverne Antrobus has some tips if you're feeling worried or anxious about the coronavirus.","type":"MAP"},{"assetId":"52506961","assetUri":"\/newsround\/52506961","firstCreated":"2020-05-11T07:33:18+00:00","hasShortForm":true,"headline":"Coronavirus having impact on children's sleep","includeComments":true,"language":"en-gb","lastUpdated":"2020-05-26T05:24:53+00:00","media":{"images":{"index":{"112105987":{"height":549,"width":976,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/13466\/production\/_112105987_gettyimages-982755994.jpg","originCode":"cpsprodpb","altText":"boy-sleeping","copyrightHolder":"Getty Images","allowSyndication":true}},"index-thumbnail":{"112105989":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/18286\/production\/_112105989_gettyimages-982755994.jpg","originCode":"cpsprodpb","altText":"boy-sleeping","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Covid-19 is having a huge impact on children's sleep. But why do we dream? Have you been having stranger dreams than normal? And what can we do to stop nightmares from happening? Newsround spoke to sleep physiologist Stephanie Romiszewski to find out.","type":"STY"},{"assetId":"52771968","assetUri":"\/newsround\/52771968","firstCreated":"2020-05-22T15:12:03+00:00","hasShortForm":true,"headline":"Government scientists publish advice on going back to school","includeComments":true,"language":"en-gb","lastUpdated":"2020-05-22T15:12:03+00:00","media":{"images":{"index":{"112412748":{"height":549,"width":976,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/14AF1\/production\/_112412748_gettyimages-1212169322.jpg","originCode":"cpsprodpb","altText":"Child in classroom","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Scientists advising the government on when schools should reopen have published their findings.","type":"STY"},{"assetId":"52680422","assetUri":"\/newsround\/52680422","firstCreated":"2020-05-21T05:07:16+00:00","hasShortForm":true,"headline":"Children in Scotland won't go back to school until August","includeComments":true,"language":"en-gb","lastUpdated":"2020-05-21T14:01:14+00:00","media":{"images":{"index":{"112398310":{"height":549,"width":976,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/056D\/production\/_112398310_mediaitem112398301.jpg","originCode":"cpsprodpb","altText":"Nicola-Sturgeon-speaking-at-Scottish-government.","copyrightHolder":"AFP \/ Getty Images","allowSyndication":false}},"index-thumbnail":{"112398304":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/9DC5\/production\/_112398304_mediaitem112398301.jpg","originCode":"cpsprodpb","altText":"Nicola-Sturgeon-speaking-at-Scottish-government.","copyrightHolder":"AFP \/ Getty Images","allowSyndication":false}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Schools will not reopen until the new school year begins on 11 August, First Minister Nicola Sturgeon has announced.","type":"STY"},{"assetId":"52653333","assetUri":"\/newsround\/52653333","firstCreated":"2020-05-14T05:39:12+00:00","headline":"What's it like going back to school after lockdown?","language":"en-gb","lastUpdated":"2020-05-14T05:39:38+00:00","media":{"images":{"index":{"112265496":{"height":549,"width":976,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/10F50\/production\/_112265496_p08d2l8v.jpg","originCode":"cpsprodpb","altText":"Keyframe #5","copyrightHolder":"Getty Images","allowSyndication":true}},"index-thumbnail":{"112267765":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/DDC8\/production\/_112267765_p08d2l8v.jpg","originCode":"cpsprodpb","altText":"Keyframe #5","copyrightHolder":"Getty Images","allowSyndication":true}}},"videos":{"index":{"52655495":{"caption":"What's it like going to school after lockdown?","entityType":"Clip","externalId":"p08d2hfg"}},"primary":{"52655495":{"caption":"What's it like going to school after lockdown?","entityType":"Clip","externalId":"p08d2hfg"}}}},"mediaType":"Video","options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Children in Denmark have been back in school for over a month now - how are things going?","type":"MAP"},{"assetId":"52735223","assetUri":"\/newsround\/52735223","firstCreated":"2020-05-20T08:35:51+00:00","hasShortForm":true,"headline":"Experts: 'Wash your hands at least SIX times a day'","language":"en-gb","lastUpdated":"2020-05-20T08:53:12+00:00","media":{"images":{"index":{"112375314":{"height":521,"width":926,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/A18D\/production\/_112375314_fe9f617b-f0bb-4a4c-9211-ba103301457e.jpg","originCode":"cpsprodpb","altText":"Handwashing","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"There is new research that suggests we should be washing our hands at least six times a day because it strongly reduces the chance of catching infections.","type":"STY"},{"assetId":"52663704","assetUri":"\/newsround\/52663704","firstCreated":"2020-05-15T05:33:55+00:00","hasShortForm":true,"headline":"Vote: How do YOU feel about going back to school?","includeComments":true,"language":"en-gb","lastUpdated":"2020-05-16T08:21:25+00:00","media":{"images":{"index":{"112270734":{"height":549,"width":976,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/AABB\/production\/_112270734_gettyimages-1164902889.jpg","originCode":"cpsprodpb","altText":"Schoolbag","copyrightHolder":"Getty Images","allowSyndication":true}},"index-thumbnail":{"112270736":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/F8DB\/production\/_112270736_gettyimages-1164902889.jpg","originCode":"cpsprodpb","altText":"Schoolbag","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Some pupils in England could be going back to class at the start of June after spending many weeks home-learning. Are you excited about the idea or would you prefer not to go back - like in Scotland, Wales and Northern Ireland? Have your say and let us know.","type":"STY"},{"assetId":"52676231","assetUri":"\/newsround\/52676231","firstCreated":"2020-05-18T05:16:54+00:00","headline":"Send in: We want your questions about school for the man in charge of them","includeComments":true,"language":"en-gb","lastUpdated":"2020-05-18T05:16:54+00:00","media":{"images":{"index":{"112163751":{"height":549,"width":976,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/3D78\/production\/_112163751_teachersjpg.jpg","originCode":"cpsprodpb","altText":"kids-look-at-computer-teacher.","copyrightHolder":"Getty Images","allowSyndication":true}},"index-thumbnail":{"112294231":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/33C1\/production\/_112294231_teachersendindg.jpg","originCode":"cpsprodpb","altText":"kids-in-classroom-teacher-chalkboard.","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"What do you want to know about school right now? Send us your questions for Gavin Williamson - he's the government's Education Secretary, and is in charge of all schools in England.","type":"STY"},{"assetId":"52131937","assetUri":"\/newsround\/52131937","firstCreated":"2020-04-02T12:57:52+00:00","hasShortForm":true,"headline":"What's happening with coronavirus testing?","includeComments":true,"language":"en-gb","lastUpdated":"2020-05-18T14:59:34+00:00","media":{"images":{"index":{"111515581":{"height":1152,"width":2048,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/4877\/production\/_111515581_gettyimages-1208595556.jpg","originCode":"cpsprodpb","altText":"woman-lab-testing.","copyrightHolder":"Getty Images","allowSyndication":true}},"index-thumbnail":{"111515583":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/9697\/production\/_111515583_gettyimages-1208595556.jpg","originCode":"cpsprodpb","altText":"woman-lab-testing.","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"passport":{"category":{"categoryId":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/www.bbc.co.uk\/ontologies\/applicationlogic-news\/News","categoryName":"News"}},"section":{"name":"News","id":"101227","uri":"\/newsround\/news","urlIdentifier":"\/newsround\/news"},"summary":"What is coronavirus testing? Why is everyone talking about it? And what are the different types?","type":"STY"},{"assetId":"51312911","assetUri":"\/newsround\/51312911","firstCreated":"2020-01-31T14:45:46+00:00","headline":"Coronavirus: How do vaccines work?","language":"en-gb","lastUpdated":"2020-05-05T06:40:41+00:00","media":{"images":{"index":{"111976781":{"height":576,"width":1024,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/494F\/production\/_111976781_mediaitem111976780.jpg","originCode":"cpsprodpb","altText":"A small bottle labeled with a \"Vaccine\" sticker is held near a medical syringe","copyrightHolder":"Reuters","allowSyndication":true}},"index-thumbnail":{"111977483":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/964D\/production\/_111977483_mediaitem111976780.jpg","originCode":"cpsprodpb","altText":"A small bottle labeled with a \"Vaccine\" sticker is held near a medical syringe","copyrightHolder":"Reuters","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Read this Newsround guide to find out more about vaccines and how long it could take to create one for coronavirus.","type":"STY"},{"assetId":"52648129","assetUri":"\/newsround\/52648129","firstCreated":"2020-05-15T06:52:58+00:00","hasShortForm":true,"headline":"Mental health in lockdown: How have you been affected?","includeComments":true,"language":"en-gb","lastUpdated":"2020-05-15T08:41:11+00:00","media":{"images":{"index":{"112284314":{"height":1152,"width":2048,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/A184\/production\/_112284314_mentalhealthlockdownindex.jpg","originCode":"cpsprodpb","altText":"girl-looking-stressed-stay-home-keep-distance-dont-panic","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"New research from the charity Place2Be has shown that many young people they work with have been speaking about the same issues - loneliness, worries over school work and family relationships.","type":"STY"},{"assetId":"52351553","assetUri":"\/newsround\/52351553","firstCreated":"2020-04-22T07:40:43+00:00","hasShortForm":true,"headline":"Could dogs be used to test people for coronavirus?","includeComments":true,"language":"en-gb","lastUpdated":"2020-05-16T08:41:17+00:00","media":{"images":{"index":{"111870211":{"height":549,"width":976,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/2BC7\/production\/_111870211_supersix.jpg","originCode":"cpsprodpb","caption":"Meet the six dogs who could be put to work testing for coronavirus","altText":"Composite-of-6-dogs.","copyrightHolder":"Medical Detection Dogs ","allowSyndication":false}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Scientists think specially trained dogs may be able to tell if someone has the virus based on their smell.","type":"STY"},{"assetId":"52227592","assetUri":"\/newsround\/52227592","firstCreated":"2020-04-12T10:44:00+00:00","headline":"100 activity ideas you do indoors during lockdown","language":"en-gb","lastUpdated":"2020-04-12T10:44:19+00:00","media":{"images":{"index":{"111718196":{"height":576,"width":1024,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/10E3D\/production\/_111718196_p0892v48.jpg","originCode":"cpsprodpb","altText":"Child-in-kitchen.","copyrightHolder":"BBC","allowSyndication":true}},"index-thumbnail":{"111763087":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/130D4\/production\/_111763087_p0892v48.jpg","originCode":"cpsprodpb","altText":"Child-in-kitchen.","copyrightHolder":"BBC","allowSyndication":true}}},"videos":{"index":{"52230909":{"caption":"100 activity ideas you do indoors during lockdown","entityType":"Clip","externalId":"p0892r84"}},"primary":{"52230909":{"caption":"100 activity ideas you do indoors during lockdown","entityType":"Clip","externalId":"p0892r84"}}}},"mediaType":"Video","options":{"isBreakingNews":false,"isFactCheck":false},"overtypedHeadline":"100 activity ideas you can do indoors during lockdown","section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"The Scouts have put together a big list of fun activities for you to do when you're at home looking for inspiration.","type":"MAP"},{"assetId":"52658861","assetUri":"\/newsround\/52658861","firstCreated":"2020-05-14T07:09:07+00:00","hasShortForm":true,"headline":"Coronavirus and asthma: Your questions answered","includeComments":true,"language":"en-gb","lastUpdated":"2020-05-14T11:20:15+00:00","media":{"images":{"index":{"112264982":{"height":576,"width":1024,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/7112\/production\/_112264982_de30.jpg","originCode":"cpsprodpb","altText":"coronavirus-asthma-inhaler.","copyrightHolder":"Getty Images","allowSyndication":true}},"index-thumbnail":{"112264984":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/BF32\/production\/_112264984_de30.jpg","originCode":"cpsprodpb","altText":"coronavirus-asthma-inhaler.","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Many of you have sent in questions asking about how to stay safe if you already have a condition called asthma. so we asked an expert","type":"STY"},{"assetId":"51877454","assetUri":"\/newsround\/51877454","firstCreated":"2020-03-15T14:52:43+00:00","hasShortForm":true,"headline":"Frequently asked questions about coronavirus","includeComments":true,"language":"en-gb","lastUpdated":"2020-05-18T10:33:41+00:00","media":{"images":{"index":{"111717777":{"height":1080,"width":1920,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/12FCB\/production\/_111717777_3_nrcor_tom7.jpg","originCode":"cpsprodpb","altText":"coronavirus","copyrightHolder":"BBC","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"We've put some of the most frequently asked questions about coronavirus into a handy guide.","type":"STY"},{"assetId":"52538074","assetUri":"\/newsround\/52538074","firstCreated":"2020-05-05T06:48:01+00:00","headline":"Watch Dr Xand鈥檚 coronavirus video diary","language":"en-gb","lastUpdated":"2020-05-05T06:48:01+00:00","media":{"images":{"index":{"112110964":{"height":576,"width":1024,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/B735\/production\/_112110964_p08c7fxt.jpg","originCode":"cpsprodpb","altText":"dr-xand.","copyrightHolder":"BBC","allowSyndication":false}}},"videos":{"index":{"52538076":{"caption":"Operation Ouch!: Dr Xand鈥檚 coronavirus video diary","entityType":"Clip","externalId":"p08c7fkw"}},"primary":{"52538076":{"caption":"Operation Ouch!: Dr Xand鈥檚 coronavirus video diary","entityType":"Clip","externalId":"p08c7fkw"}}}},"mediaType":"Video","options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"News","id":"101227","uri":"\/newsround\/news","urlIdentifier":"\/newsround\/news"},"summary":"Dr Xand from CBBC's Operation Ouch! tells us how he felt each day he was ill and how after he started to get better.","type":"MAP"},{"assetId":"52300064","assetUri":"\/newsround\/52300064","firstCreated":"2020-04-22T05:43:08+00:00","headline":"Coronavirus: Key workers' children still at school","language":"en-gb","lastUpdated":"2020-04-22T05:43:08+00:00","media":{"images":{"index":{"111820422":{"height":549,"width":976,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/5782\/production\/_111820422_nrkeykids1.jpg","originCode":"cpsprodpb","altText":"key-worker-graphic","copyrightHolder":"BBC","allowSyndication":true}}},"videos":{"index":{"52300065":{"caption":"Children who are still at school told us how they had to sit at separate desks because of social distancing rules","entityType":"Clip","externalId":"p089kmbz"}},"primary":{"52300065":{"caption":"Children who are still at school told us how they had to sit at separate desks because of social distancing rules","entityType":"Clip","externalId":"p089kmbz"}}}},"mediaType":"Video","options":{"isBreakingNews":false,"isFactCheck":false},"overtypedHeadline":"Coronavirus: The key workers' children still at school","section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Lots of you are staying home with your families at the moment, but what about those of you with parents or guardians who are key workers and still have to go to school?","type":"MAP"},{"assetId":"52280887","assetUri":"\/newsround\/52280887","firstCreated":"2020-04-14T12:50:55+00:00","hasShortForm":true,"headline":"Everything you need to know about PPE","includeComments":true,"language":"en-gb","lastUpdated":"2020-04-18T09:15:53+00:00","media":{"images":{"index":{"111780980":{"height":1152,"width":2048,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/22CC\/production\/_111780980_gettyimages-1208003898.jpg","originCode":"cpsprodpb","altText":"mask-gloves-hospital.","copyrightHolder":"Getty Images","allowSyndication":true}},"index-thumbnail":{"111780982":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/70EC\/production\/_111780982_gettyimages-1208003898.jpg","originCode":"cpsprodpb","altText":"mask-gloves-hospital.","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"overtypedHeadline":"What is PPE & why is it in the news?","passport":{"category":{"categoryId":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/www.bbc.co.uk\/ontologies\/applicationlogic-news\/News","categoryName":"News"}},"section":{"name":"News","id":"101227","uri":"\/newsround\/news","urlIdentifier":"\/newsround\/news"},"summary":"What is PPE, why is it important, and why are people talking about it?","type":"STY"},{"assetId":"52357183","assetUri":"\/newsround\/52357183","firstCreated":"2020-04-21T10:28:41+00:00","headline":"Dr Ranj answers kids' questions about coronavirus","language":"en-gb","lastUpdated":"2020-05-20T06:44:01+00:00","media":{"images":{"index":{"111871388":{"height":575,"width":1024,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/158FD\/production\/_111871388_p08b29ym.jpg","originCode":"cpsprodpb","altText":"dr ranj","copyrightHolder":"BBC","allowSyndication":false}},"index-thumbnail":{"111870015":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/C73F\/production\/_111870015_drranj.jpg","originCode":"cpsprodpb","altText":"Dr ranj","copyrightHolder":"BBC","allowSyndication":true}}},"videos":{"index":{"52724297":{"caption":"Coronavirus: Dr Ranj answers kids' questions","entityType":"Clip","externalId":"p08dl1kt"}},"primary":{"52724297":{"caption":"Coronavirus: Dr Ranj answers kids' questions","entityType":"Clip","externalId":"p08dl1kt"}}}},"mediaType":"Video","options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"We know you have got loads of questions about coronavirus and about how we're living right now, so here's doctor and Strictly star Ranj Singh to answer some of them.","type":"MAP"},{"assetId":"52314760","assetUri":"\/newsround\/52314760","firstCreated":"2020-04-17T05:17:53+00:00","headline":"Paul & Freddy's mental health top tips","language":"en-gb","lastUpdated":"2020-04-17T08:44:00+00:00","media":{"images":{"index":{"111831380":{"height":576,"width":1024,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/2079\/production\/_111831380_p089r79z.jpg","originCode":"cpsprodpb","altText":"paul-and-freddy.","copyrightHolder":"BBC","allowSyndication":true}},"index-thumbnail":{"111831382":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/6E99\/production\/_111831382_p089r79z.jpg","originCode":"cpsprodpb","altText":"paul-and-freddy.","copyrightHolder":"BBC","allowSyndication":true}}},"videos":{"index":{"52323804":{"caption":"Paul & Freddy's mental health top tips","entityType":"Clip","externalId":"p089r71f"}},"primary":{"52323804":{"caption":"Paul & Freddy's mental health top tips","entityType":"Clip","externalId":"p089r71f"}}}},"mediaType":"Video","options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Newsround spoke to mental health coach Paul and his son Freddy, they do lots of work around mental health and have got some top tips to help you stay positive!","type":"MAP"},{"assetId":"52214311","assetUri":"\/newsround\/52214311","firstCreated":"2020-04-14T06:07:49+00:00","headline":"Worship during the Coronavirus","language":"en-gb","lastUpdated":"2020-04-14T06:07:49+00:00","media":{"images":{"index":{"111718193":{"height":576,"width":1024,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/990D\/production\/_111718193_p0892rv3.jpg","originCode":"cpsprodpb","altText":"Keyframe #1","copyrightHolder":"BBC","allowSyndication":false}}},"videos":{"index":{"52230908":{"caption":"Worship during the Coronavirus","entityType":"Clip","externalId":"p0892rh2"}},"primary":{"52230908":{"caption":"Worship during the Coronavirus","entityType":"Clip","externalId":"p0892rh2"}}}},"mediaType":"Video","options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Due to the current social distancing measures, going out to your local church or synagogue isn't really allowed. However, some people are finding new ways to practice their faith at home.","type":"MAP"},{"assetId":"52096366","assetUri":"\/newsround\/52096366","firstCreated":"2020-04-02T05:13:53+00:00","headline":"How to spot fake virus news","language":"en-gb","lastUpdated":"2020-04-03T08:03:29+00:00","media":{"images":{"index":{"111550544":{"height":1152,"width":2048,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/ADD9\/production\/_111550544_gettyimages-1195910993.jpg","originCode":"cpsprodpb","caption":"Fake news about the coronavirus is spreading on the internet. But how can we spot it?","altText":"hand-holding-a-phone-with-fake-news-on-the-screen-other-hand-about-to-press-share-on-the-screen","copyrightHolder":"Getty Images","allowSyndication":true}},"index-thumbnail":{"111483841":{"height":1900,"width":2800,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/39F6\/production\/_111483841_gettyimages-1195910993.jpg","originCode":"cpsprodpb","caption":"Fake news about the coronavirus is spreading on the internet. But how can we spot it?","altText":"hand-holding-a-phone-with-fake-news-on-the-screen-other-hand-about-to-press-share-on-the-screen","copyrightHolder":"Getty Images","allowSyndication":true}}},"videos":{"index":{"52149262":{"caption":"Coronavirus: How to spot fake news","entityType":"Clip","externalId":"p088jx6v"}},"primary":{"52149262":{"caption":"Coronavirus: How to spot fake news","entityType":"Clip","externalId":"p088jx6v"}}}},"mediaType":"Video","options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Fake news or misinformation about the coronavirus is spreading on the internet. Marianna Spring, a disinformation reporter at the BBC, tells us how we can spot it.","type":"MAP"},{"assetId":"52156671","assetUri":"\/newsround\/52156671","firstCreated":"2020-04-03T14:46:21+00:00","hasShortForm":true,"headline":"Worried about coronavirus? The BBC Own It app can help","language":"en-gb","lastUpdated":"2020-04-03T14:46:21+00:00","media":{"images":{"index":{"111607524":{"height":1152,"width":2048,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/A64A\/production\/_111607524_gettyimages-619269222.jpg","originCode":"cpsprodpb","altText":"child-on-phone.","copyrightHolder":"Getty Images","allowSyndication":true}},"index-thumbnail":{"111607526":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/F46A\/production\/_111607526_gettyimages-619269222.jpg","originCode":"cpsprodpb","altText":"child-on-phone.","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"The Own It keyboard can now recognise language related to coronavirus and provide advice to support users who may have fears or worries about it.","type":"STY"},{"assetId":"52018134","assetUri":"\/newsround\/52018134","firstCreated":"2020-03-24T14:21:10+00:00","hasShortForm":true,"headline":"How to BOSS being stuck at home!","includeComments":true,"language":"en-gb","lastUpdated":"2020-03-25T06:28:57+00:00","media":{"images":{"index":{"111404617":{"height":1080,"width":1920,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/117D8\/production\/_111404617_title_-still_00078.png","originCode":"cpsprodpb","altText":"title-card","copyrightHolder":"BBC","allowSyndication":true}},"index-thumbnail":{"111404619":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/165F8\/production\/_111404619_title_-still_00078.png","originCode":"cpsprodpb","altText":"title-card","copyrightHolder":"BBC","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"So you're stuck at home - here are some expert tips on looking after yourself","type":"STY"},{"assetId":"51989370","assetUri":"\/newsround\/51989370","firstCreated":"2020-03-23T14:08:29+00:00","headline":"Social distancing explained - with dominoes","language":"en-gb","lastUpdated":"2020-03-29T13:38:07+00:00","media":{"images":{"index":{"111381876":{"height":576,"width":1024,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/108EA\/production\/_111381876_p0878y4y.jpg","originCode":"cpsprodpb","altText":"Domino","copyrightHolder":"BBC","allowSyndication":true}},"index-thumbnail":{"111381878":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/1570A\/production\/_111381878_p0878y4y.jpg","originCode":"cpsprodpb","altText":"Domino","copyrightHolder":"BBC","allowSyndication":true}}},"videos":{"index":{"51989371":{"caption":"Dominoes show how social distancing can help","entityType":"Clip","externalId":"p0878wwm"}},"primary":{"51989371":{"caption":"Dominoes show how social distancing can help","entityType":"Clip","externalId":"p0878wwm"}}}},"mediaType":"Video","options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Wondering how social distancing protects people from the coronavirus? Martin explains with help from his domino set.","type":"MAP"},{"assetId":"51698180","assetUri":"\/newsround\/51698180","firstCreated":"2020-03-02T06:08:00+00:00","headline":"How to wash your hands","language":"en-gb","lastUpdated":"2020-05-05T08:15:53+00:00","media":{"images":{"index":{"111094769":{"height":576,"width":1024,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/179ED\/production\/_111094769_p0859hzb.jpg","originCode":"cpsprodpb","altText":"how to wash your hands.","copyrightHolder":"BBC","allowSyndication":false}},"index-thumbnail":{"111094771":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/4555\/production\/_111094771_p0859hzb.jpg","originCode":"cpsprodpb","altText":"how to wash your hands.","copyrightHolder":"BBC","allowSyndication":false}}},"videos":{"index":{"51698181":{"caption":"How to wash your hands","entityType":"Clip","externalId":"p0859hdj"}},"primary":{"51698181":{"caption":"How to wash your hands","entityType":"Clip","externalId":"p0859hdj"}}}},"mediaType":"Video","options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"It's really important to wash your hands to stop the spread of germs. Here's the best way to do it.","type":"MAP"},{"assetId":"51959552","assetUri":"\/newsround\/51959552","firstCreated":"2020-03-19T12:42:29+00:00","headline":"Advice on looking after pets during Coronavirus","language":"en-gb","lastUpdated":"2020-03-23T11:34:02+00:00","media":{"images":{"index":{"111350689":{"height":549,"width":976,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/1812D\/production\/_111350689_p0871sr2.jpg","originCode":"cpsprodpb","altText":"DR James and his dog Oliver","copyrightHolder":"BBC","allowSyndication":true}},"index-thumbnail":{"111352492":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/72F1\/production\/_111352492_p0871sr2.jpg","originCode":"cpsprodpb","altText":"DR James and his dog Oliver","copyrightHolder":"BBC","allowSyndication":true}}},"videos":{"index":{"51959553":{"caption":"Coronavirus: How to keep pets safe","entityType":"Clip","externalId":"p0871sl2"}},"primary":{"51959553":{"caption":"Coronavirus: How to keep pets safe","entityType":"Clip","externalId":"p0871sl2"}}}},"mediaType":"Video","options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Dr James and dog, Oliver from The Pets Factor tell us how to keep your pet safe during Coronavirus","type":"MAP"}],"semanticGroupName":"More stories 2"},{"type":"responsive-cluster","title":"Slice 3 - White with bright purple index card","strapline":{"name":"Gaming"},"items":[{"assetId":"52076081","assetUri":"\/newsround\/52076081","firstCreated":"2020-03-30T10:45:56+00:00","hasShortForm":true,"headline":"Minecraft Dungeons is out!","includeComments":true,"language":"en-gb","lastUpdated":"2020-05-27T07:37:36+00:00","media":{"images":{"index":{"111471997":{"height":576,"width":1024,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/1382D\/production\/_111471997_dungeons.jpg","originCode":"cpsprodpb","altText":"minecraft-dungeons-cover-art.","copyrightHolder":"Minecraft\/Mojang\/Microsoft","allowSyndication":false}},"index-thumbnail":{"111471999":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/1864D\/production\/_111471999_dungeons.jpg","originCode":"cpsprodpb","altText":"minecraft-dungeons-cover-art.","copyrightHolder":"Minecraft\/Mojang\/Microsoft","allowSyndication":false}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Minecraft Dungeons has been finally been released, so here is what you need to know about the new game.","type":"STY"},{"assetId":"52769868","assetUri":"\/newsround\/52769868","firstCreated":"2020-05-22T15:23:14+00:00","hasShortForm":true,"headline":"Five facts for Pac-Man's 40th","includeComments":true,"language":"en-gb","lastUpdated":"2020-05-22T16:21:46+00:00","media":{"images":{"index":{"96501079":{"height":549,"width":976,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/17AF2\/production\/_96501079_pac-man.gif","originCode":"cpsprodpb","altText":"Pac-Man ghosts","copyrightHolder":"Getty Images","allowSyndication":true}},"index-thumbnail":{"112419244":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/AD03\/production\/_112419244_pac-man.gif","originCode":"cpsprodpb","altText":"Pac-Man ghosts","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Happy birthday Pac-Man!","type":"STY"},{"assetId":"52136993","assetUri":"\/newsround\/52136993","firstCreated":"2020-04-08T12:52:18+00:00","hasShortForm":true,"headline":"Gaming top tips: Fortnite","includeComments":true,"language":"en-gb","lastUpdated":"2020-04-08T12:52:18+00:00","media":{"images":{"index":{"111526228":{"height":576,"width":1024,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/14156\/production\/_111526228_season22motage.jpg","originCode":"cpsprodpb","altText":"fortnite-chapter-2-season-2.","copyrightHolder":"EPic Games","allowSyndication":false}},"index-thumbnail":{"111526230":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/0CBE\/production\/_111526230_season22motage.jpg","originCode":"cpsprodpb","altText":"fortnite-chapter-2-season-2.","copyrightHolder":"EPic Games","allowSyndication":false}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"If you're a fan of Fortnite, then these top tips could help you out!","type":"STY"},{"assetId":"52105524","assetUri":"\/newsround\/52105524","firstCreated":"2020-04-08T11:17:17+00:00","hasShortForm":true,"headline":"Gaming top tips: Animal Crossing","includeComments":true,"language":"en-gb","lastUpdated":"2020-04-08T11:17:17+00:00","media":{"images":{"index":{"111497891":{"height":576,"width":1024,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/4DA7\/production\/_111497891_mediaitem111497890.jpg","originCode":"cpsprodpb","altText":"animal-crossing.","copyrightHolder":"ANimal Crossing\/Nintendo","allowSyndication":false}},"index-thumbnail":{"111497893":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/9BC7\/production\/_111497893_mediaitem111497890.jpg","originCode":"cpsprodpb","altText":"animal-crossing.","copyrightHolder":"ANimal Crossing\/Nintendo","allowSyndication":false}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"If you've been playing Animal Crossing, here are some top tips that could help you out!","type":"STY"},{"assetId":"52118980","assetUri":"\/newsround\/52118980","firstCreated":"2020-04-08T11:26:34+00:00","hasShortForm":true,"headline":"Gaming top tips: Minecraft","includeComments":true,"language":"en-gb","lastUpdated":"2020-04-08T11:26:34+00:00","media":{"images":{"index":{"111525792":{"height":576,"width":1024,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/7438\/production\/_111525792_minecraft_horizontal_key_art.jpg","originCode":"cpsprodpb","altText":"minecraft.","copyrightHolder":"Minecraft\/Mojang\/Microsoft","allowSyndication":false}},"index-thumbnail":{"111526225":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/CC26\/production\/_111526225_minecraft_horizontal_key_art.jpg","originCode":"cpsprodpb","altText":"minecraft.","copyrightHolder":"Minecraft\/Mojang\/Microsoft","allowSyndication":false}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"If you love Minecraft then we've got some top tips you might not have heard of to try out!","type":"STY"},{"assetId":"52230222","assetUri":"\/newsround\/52230222","firstCreated":"2020-04-14T13:01:54+00:00","hasShortForm":true,"headline":"Gaming top tips: Fifa 20","includeComments":true,"language":"en-gb","lastUpdated":"2020-04-14T13:01:54+00:00","media":{"images":{"index":{"111724551":{"height":1056,"width":1877,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/3CB6\/production\/_111724551_fifa20.jpg","originCode":"cpsprodpb","altText":"Jadon-Sancho-FIFA20.","copyrightHolder":"EA Sports","allowSyndication":false}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Some hints, tips and tricks to help you reach the next level on Fifa 20.","type":"STY"},{"assetId":"52487582","assetUri":"\/newsround\/52487582","firstCreated":"2020-05-01T09:06:55+00:00","hasShortForm":true,"headline":"Who won the all-star Mario Tennis tournament?","includeComments":true,"language":"en-gb","lastUpdated":"2020-05-04T08:33:29+00:00","media":{"images":{"index":{"112050448":{"height":576,"width":1024,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/149B5\/production\/_112050448_mediaitem112049974.jpg","originCode":"cpsprodpb","altText":"mario-tennis.","copyrightHolder":"Nintendo","allowSyndication":false}},"index-thumbnail":{"112050451":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/3C2D\/production\/_112050451_tennis4.jpg","originCode":"cpsprodpb","altText":"princess-peach-serena-williams.","copyrightHolder":"Nintendo\/Getty","allowSyndication":false}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Pro-tennis players and celebrities teamed up for a charity tennis tournament with a difference!","type":"STY"},{"assetId":"52151617","assetUri":"\/newsround\/52151617","firstCreated":"2020-04-04T13:55:23+00:00","hasShortForm":true,"headline":"Harry Potter meets Stardew Valley in new game Witchbrook","includeComments":true,"language":"en-gb","lastUpdated":"2020-04-05T09:06:01+00:00","media":{"images":{"index":{"111601840":{"height":576,"width":1024,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/12CA\/production\/_111601840_witchbrook_image_3.png","originCode":"cpsprodpb","altText":"witchbrook.","copyrightHolder":"witchbrook\/chucklefish","allowSyndication":false}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"If you're ready to go to magic school and set up your own wizarding shops, then Witchbrook could be for you!","type":"STY"},{"assetId":"52740567","assetUri":"\/newsround\/52740567","firstCreated":"2020-05-20T14:06:12+00:00","hasShortForm":true,"headline":"Meet the gaming granny who has just broken a world record!","includeComments":true,"language":"en-gb","lastUpdated":"2020-05-20T14:06:12+00:00","media":{"images":{"index":{"112176744":{"height":1152,"width":2048,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/AEDF\/production\/_112176744_gaminggran.jpg","originCode":"cpsprodpb","altText":"Hamako-Mori.","copyrightHolder":"Guinness World Records","allowSyndication":false}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"The record-breaking gaming Grandma has played for 39 years and says gaming has made life 'more fun'.","type":"STY"},{"assetId":"52810167","assetUri":"\/newsround\/52810167","firstCreated":"2020-05-26T13:36:03+00:00","hasShortForm":true,"headline":"Pro race driver cheats in online tournament","includeComments":true,"language":"en-gb","lastUpdated":"2020-05-26T13:36:03+00:00","media":{"images":{"index":{"112503551":{"height":1152,"width":2048,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/3CAA\/production\/_112503551_shutterstock_editorial_8846726b.jpg","originCode":"cpsprodpb","altText":"daniel-abt-in-racing-car","copyrightHolder":"Pixathlon\/Shutterstock","allowSyndication":false}},"index-thumbnail":{"112503556":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/FFFA\/production\/_112503556_shutterstock_editorial_8846726b.jpg","originCode":"cpsprodpb","altText":"daniel-abt-in-racing-car","copyrightHolder":"Pixathlon\/Shutterstock","allowSyndication":false}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Driver Daniel Abt hired a professional gamer to play for him in Formula E 'Race at Home' competition.","type":"STY"},{"assetId":"52673146","assetUri":"\/newsround\/52673146","firstCreated":"2020-05-16T07:15:08+00:00","hasShortForm":true,"headline":"The new Mario game coming to Switch","includeComments":true,"language":"en-gb","lastUpdated":"2020-05-16T07:15:08+00:00","media":{"images":{"index":{"112286400":{"height":576,"width":1024,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/01D4\/production\/_112286400_mediaitem112286399.jpg","originCode":"cpsprodpb","altText":"paper-mario.","copyrightHolder":"Nintendo","allowSyndication":false}},"index-thumbnail":{"112286403":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/7704\/production\/_112286403_mediaitem112286399.jpg","originCode":"cpsprodpb","altText":"paper-mario.","copyrightHolder":"Nintendo","allowSyndication":false}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"News","id":"101227","uri":"\/newsround\/news","urlIdentifier":"\/newsround\/news"},"summary":"Nintendo have just announced that a new Mario game will be heading to the Switch","type":"STY"},{"assetId":"52500501","assetUri":"\/newsround\/52500501","firstCreated":"2020-05-01T09:15:38+00:00","headline":"Andy Murray wins Madrid Open...on PlayStation!","includeComments":true,"language":"en-gb","lastUpdated":"2020-05-01T09:15:38+00:00","media":{"images":{"index":{"112077623":{"height":549,"width":976,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/7FA5\/production\/_112077623_mediaitem112058095.jpg","originCode":"cpsprodpb","altText":"Andy-Murray","copyrightHolder":"ATP","allowSyndication":false}},"index-thumbnail":{"112068204":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/9D5E\/production\/_112068204_mediaitem112058095.jpg","originCode":"cpsprodpb","altText":"Andy-Murray","copyrightHolder":"ATP","allowSyndication":false}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Tennis stars had been competing using a PlayStation tennis game - and Murray gave half his winnings to the NHS","type":"STY"},{"assetId":"52456575","assetUri":"\/newsround\/52456575","firstCreated":"2020-04-29T05:36:08+00:00","hasShortForm":true,"headline":"How coding detectives dig out gaming secrets","includeComments":true,"language":"en-gb","lastUpdated":"2020-04-29T05:37:48+00:00","media":{"images":{"index":{"112011773":{"height":576,"width":1024,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/934F\/production\/_112011773_mining.jpg","originCode":"cpsprodpb","altText":"data-mining.","copyrightHolder":"Getty Images","allowSyndication":true}},"index-thumbnail":{"112011775":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/E16F\/production\/_112011775_mining.jpg","originCode":"cpsprodpb","altText":"data-mining.","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"What is data mining and how do people find out about new gaming updates?","type":"STY"},{"assetId":"52136687","assetUri":"\/newsround\/52136687","firstCreated":"2020-04-02T17:08:48+00:00","hasShortForm":true,"headline":"Bafta Games Awards to take place online","language":"en-gb","lastUpdated":"2020-04-02T17:08:48+00:00","media":{"images":{"index":{"111535529":{"height":1152,"width":2048,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/16989\/production\/_111535529_2df67d9b-7138-4e93-9eab-11ba4a791953.jpg","originCode":"cpsprodpb","altText":"Polishing-a-bafta","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Due to the ongoing coronavirus pandemic, the winners of the Bafta Games Awards will be announced via a live stream.","type":"STY"},{"assetId":"52180192","assetUri":"\/newsround\/52180192","firstCreated":"2020-04-06T08:57:01+00:00","hasShortForm":true,"headline":"WrestleMania 36: Six things you need to know","includeComments":true,"language":"en-gb","lastUpdated":"2020-04-06T12:58:48+00:00","media":{"images":{"index":{"111629748":{"height":549,"width":976,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/14B38\/production\/_111629748_drewmcintrye.jpg","originCode":"cpsprodpb","altText":"Drew McIntyre.","copyrightHolder":"WWE","allowSyndication":false}},"index-thumbnail":{"111629753":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/8BD0\/production\/_111629753_wwe.jpg","originCode":"cpsprodpb","altText":"WWE-WrestleMania.","copyrightHolder":"WWE","allowSyndication":false}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"WrestleMania 36 took place on Sunday night. Here are six things you need to know, including the first ever UK WWE Champ","type":"STY"},{"assetId":"51976450","assetUri":"\/newsround\/51976450","firstCreated":"2020-03-20T12:27:11+00:00","hasShortForm":true,"headline":"Who's the new Overwatch character?","includeComments":true,"language":"en-gb","lastUpdated":"2020-03-20T12:27:11+00:00","media":{"images":{"index":{"111372047":{"height":1152,"width":2048,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/1212B\/production\/_111372047_echo_webbanner_final_v3.png","originCode":"cpsprodpb","altText":"echo-overwatch.","copyrightHolder":"Blizzard","allowSyndication":false}},"index-thumbnail":{"111372049":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/16F4B\/production\/_111372049_echo_webbanner_final_v3.png","originCode":"cpsprodpb","altText":"echo-overwatch.","copyrightHolder":"Blizzard","allowSyndication":false}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"passport":{"category":{"categoryId":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/www.bbc.co.uk\/ontologies\/applicationlogic-news\/News","categoryName":"News"}},"section":{"name":"News","id":"101227","uri":"\/newsround\/news","urlIdentifier":"\/newsround\/news"},"summary":"Meet Echo, the newest member of the Overwatch team, here's everything we know about her so far.","type":"STY"},{"assetId":"51962151","assetUri":"\/newsround\/51962151","firstCreated":"2020-03-19T16:51:27+00:00","hasShortForm":true,"headline":"Animal Crossing New Horizons is out! Here's all you need to know","includeComments":true,"language":"en-gb","lastUpdated":"2020-03-20T06:48:08+00:00","media":{"images":{"index":{"111362712":{"height":576,"width":1024,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/54DE\/production\/_111362712_mediaitem111362711.jpg","originCode":"cpsprodpb","altText":"animal-crossing-tent.","copyrightHolder":"Nintendo\/Animal Crossing","allowSyndication":false}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Nintendo have released the new Animal Crossing game - but what's it all about?","type":"STY"},{"assetId":"51266122","assetUri":"\/newsround\/51266122","byline":{"name":"By Vicki Roberts","persons":[{"name":"Vicki Roberts","function":"Newsround","originCode":"MCS"}],"title":"Newsround"},"firstCreated":"2020-02-04T07:44:40+00:00","hasShortForm":true,"headline":"The Sims turns 20!","includeComments":true,"language":"en-gb","lastUpdated":"2020-02-09T08:11:56+00:00","media":{"images":{"index":{"110706418":{"height":576,"width":1024,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/13E34\/production\/_110706418_b1e649d2-0c17-4265-9351-26a41a7f5264.jpg","originCode":"cpsprodpb","caption":"Players could interact with iconic characters like the Goth, Newbie and Pleasant families.","altText":"the-sims-game-characters.","copyrightHolder":"EA\/Maxis\/The Sims","allowSyndication":false}},"index-thumbnail":{"110754826":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/F57D\/production\/_110754826_p0825c1t.jpg","originCode":"cpsprodpb","altText":"sims-at-20-anniversary.","copyrightHolder":"BBC","allowSyndication":false}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"The Sims is celebrating its 20th anniversary today! But how did it become one of the world's best-selling games? We've been finding out...","type":"STY"},{"assetId":"51733247","assetUri":"\/newsround\/51733247","firstCreated":"2020-03-04T07:17:04+00:00","hasShortForm":true,"headline":"Mario Kart Tour finally gets multiplayer mode!","includeComments":true,"language":"en-gb","lastUpdated":"2020-03-04T07:17:04+00:00","media":{"images":{"index":{"109491657":{"height":576,"width":1024,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/12763\/production\/_109491657_mariokart.jpg","originCode":"cpsprodpb","altText":"mario-kart-tour.","copyrightHolder":"Nintendo","allowSyndication":false}},"index-thumbnail":{"111128152":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/625E\/production\/_111128152_mariokart.jpg","originCode":"cpsprodpb","altText":"mario-kart-tour.","copyrightHolder":"Nintendo","allowSyndication":false}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Previously players have only been able to play solo, or pay to play a beta version of multiplayer mode.","type":"STY"},{"assetId":"51476191","assetUri":"\/newsround\/51476191","firstCreated":"2020-02-12T17:09:35+00:00","hasShortForm":true,"headline":"Pok茅mon: What do you think of Professor Oak's new look?","includeComments":true,"language":"en-gb","lastUpdated":"2020-02-13T06:12:08+00:00","media":{"images":{"index":{"110873081":{"height":549,"width":976,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/4675\/production\/_110873081_profesoroak.jpg","originCode":"cpsprodpb","altText":"professor-oak","copyrightHolder":"Pokemon Company","allowSyndication":true}},"index-thumbnail":{"110882244":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/ACC4\/production\/_110882244_profesoroak.jpg","originCode":"cpsprodpb","altText":"professor-oak","copyrightHolder":"Pokemon Company","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"This is Pok茅mon's Professor Oak as you've never seen him before - with a new hairdo, wrap-around shades and beard! But what do you think?","type":"STY"},{"assetId":"51441467","assetUri":"\/newsround\/51441467","firstCreated":"2020-02-10T12:01:54+00:00","headline":"Who won the Fifa eClub World Cup?","includeComments":true,"language":"en-gb","lastUpdated":"2020-02-10T12:01:54+00:00","media":{"images":{"index":{"110843485":{"height":549,"width":976,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/E442\/production\/_110843485_mediaitem110836356.jpg","originCode":"cpsprodpb","caption":"Team Complexity is made up of Joksan and MaXe","altText":"Fifa eClub World Cup","copyrightHolder":"Getty Images","allowSyndication":true}},"index-thumbnail":{"110838373":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/9207\/production\/_110838373_mediaitem110836356.jpg","originCode":"cpsprodpb","caption":"Team Complexity is made up of Joksan and MaXe","altText":"Fifa eClub World Cup","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Some of the world's best Fifa players travelled to Milan to compete in the Fifa eClub World Cup, but there can only be one winning team.","type":"STY"},{"assetId":"51415843","assetUri":"\/newsround\/51415843","firstCreated":"2020-02-07T13:19:28+00:00","hasShortForm":true,"headline":"Minecraft: Is Netherite better than diamonds?!","includeComments":true,"language":"en-gb","lastUpdated":"2020-02-09T08:02:12+00:00","media":{"images":{"index":{"110810387":{"height":576,"width":1024,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/131DD\/production\/_110810387_netherite.jpg","originCode":"cpsprodpb","altText":"netherite-block-minecraft.","copyrightHolder":"Minecraft\/Microsoft\/Mojang","allowSyndication":false}},"index-thumbnail":{"110810389":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/17FFD\/production\/_110810389_netherite.jpg","originCode":"cpsprodpb","altText":"netherite-block-minecraft.","copyrightHolder":"Minecraft\/Microsoft\/Mojang","allowSyndication":false}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"A new update to the Nether in Minecraft has revealed a new material that could be better than diamonds!","type":"STY"},{"assetId":"51387735","assetUri":"\/newsround\/51387735","firstCreated":"2020-02-05T17:00:27+00:00","headline":"Everything you need to know about the Fifa eClub World Cup","includeComments":true,"language":"en-gb","lastUpdated":"2020-02-05T17:00:27+00:00","media":{"images":{"index":{"110785760":{"height":549,"width":976,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/1A66\/production\/_110785760_gettyimages-1128681561.jpg","originCode":"cpsprodpb","altText":"gamer","copyrightHolder":"Charlie Crowhurst\/Fifa\/Getty Images","allowSyndication":false}},"index-thumbnail":{"110785762":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/6886\/production\/_110785762_gettyimages-1128681561.jpg","originCode":"cpsprodpb","altText":"gamer","copyrightHolder":"Charlie Crowhurst\/Fifa\/Getty Images","allowSyndication":false}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"The Fifa eClub World Cup starts on Friday in Italy will see 24 teams from all over the world battling it out to be crowned the winner.","type":"STY"},{"assetId":"51368413","assetUri":"\/newsround\/51368413","firstCreated":"2020-02-04T09:29:56+00:00","hasShortForm":true,"headline":"Gareth Bale has launched an e-sports team","includeComments":true,"language":"en-gb","lastUpdated":"2020-02-04T17:49:53+00:00","media":{"images":{"index":{"104279213":{"height":351,"width":624,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/7A41\/production\/_104279213_garethbale.jpg","originCode":"cpsprodpb","caption":"Gareth Bale celebrates scoring in Wales' 4-1 Nations league win over the Republic of Ireland in September","altText":"Gareth Bale celebrates scoring in Wales' 4-1 Nations league win over the Republic of Ireland in September","copyrightHolder":"Huw Evans picture agency","allowSyndication":true}},"index-thumbnail":{"110777346":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/FB79\/production\/_110777346_garethbale.jpg","originCode":"cpsprodpb","caption":"Gareth Bale celebrates scoring in Wales' 4-1 Nations league win over the Republic of Ireland in September","altText":"Gareth Bale celebrates scoring in Wales' 4-1 Nations league win over the Republic of Ireland in September","copyrightHolder":"Huw Evans picture agency","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"passport":{"category":{"categoryId":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/www.bbc.co.uk\/ontologies\/applicationlogic-news\/News","categoryName":"News"}},"section":{"name":"News","id":"101227","uri":"\/newsround\/news","urlIdentifier":"\/newsround\/news"},"summary":"Wales and Real Madrid player Gareth Bale has set up a new e-sports organisation!","type":"STY"},{"assetId":"51266123","assetUri":"\/newsround\/51266123","firstCreated":"2020-01-27T17:15:28+00:00","hasShortForm":true,"headline":"Why is the new season of Fortnite taking so long?","includeComments":true,"language":"en-gb","lastUpdated":"2020-01-27T17:15:28+00:00","media":{"images":{"index":{"109241830":{"height":576,"width":1024,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/0EE6\/production\/_109241830_chapter2montage.jpg","originCode":"cpsprodpb","altText":"fortnite-chapter-2-season-1.","copyrightHolder":"Fortnite\/Epic Games","allowSyndication":false}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Fortnite Chapter 2 Season 2 seems to be taking a lot longer than normal to arrive - we've been finding out why.","type":"STY"},{"assetId":"51266124","assetUri":"\/newsround\/51266124","firstCreated":"2020-01-27T14:57:16+00:00","hasShortForm":true,"headline":"Why Overwatch League is ditching Twitch","includeComments":true,"language":"en-gb","lastUpdated":"2020-01-27T14:57:16+00:00","media":{"images":{"index":{"110664656":{"height":576,"width":1024,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/1006E\/production\/_110664656_twitchyoutube.jpg","originCode":"cpsprodpb","altText":"twitch-logo-youtube-logo.","copyrightHolder":"Twitch\/YouTube","allowSyndication":false}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"YouTube has bought the rights - or permissions - to stream Activision Blizzard esports tournaments like Overwatch League. Here's what that means.","type":"STY"}],"semanticGroupName":"More stories 3"},{"type":"responsive-cluster","title":"Slice 4 - Dark purple with pink index card","strapline":{"name":"Quiz-fest"},"items":[{"assetId":"47387157","assetUri":"\/newsround\/47387157","firstCreated":"2019-02-27T12:23:52+00:00","hasShortForm":true,"headline":"How much do you know about Marvel and DC superheroes?","language":"en-gb","lastUpdated":"2020-05-14T06:44:14+00:00","media":{"images":{"index":{"105824372":{"height":549,"width":976,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/6ACE\/production\/_105824372_marvel.jpg","originCode":"cpsprodpb","altText":"Image of Marvel characters","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"overtypedHeadline":"Test your Marvel and DC superhero skills!","section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"How much do you know about Marvel and DC superheroes?","type":"STY"},{"assetId":"52343789","assetUri":"\/newsround\/52343789","firstCreated":"2020-04-20T09:05:19+00:00","hasShortForm":true,"headline":"Quiz: Which animal are you?","language":"en-gb","lastUpdated":"2020-04-21T15:47:49+00:00","media":{"images":{"index":{"111849757":{"height":549,"width":976,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/12812\/production\/_111849757_flamingo.jpg","originCode":"cpsprodpb","altText":"Flamingos","copyrightHolder":"Getty Images","allowSyndication":true}},"index-thumbnail":{"111849759":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/17632\/production\/_111849759_flamingo.jpg","originCode":"cpsprodpb","altText":"Flamingos","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"overtypedHeadline":"Which animal are you?","section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Ever wondered which animal you're similar to? Well try our personality quiz and find out!","type":"STY"},{"assetId":"52545218","assetUri":"\/newsround\/52545218","firstCreated":"2020-05-05T10:32:52+00:00","hasShortForm":true,"headline":"QUIZ: Can you name the tree?","includeComments":true,"language":"en-gb","lastUpdated":"2020-05-05T10:32:52+00:00","media":{"images":{"index":{"112151629":{"height":549,"width":976,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/169C7\/production\/_112151629_gettyimages-1142576725.jpg","originCode":"cpsprodpb","altText":"cherry-tree","copyrightHolder":"Getty Images","allowSyndication":true}},"index-thumbnail":{"112151628":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/142B7\/production\/_112151628_gettyimages-1142576725.jpg","originCode":"cpsprodpb","altText":"cherry-tree","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"overtypedHeadline":"Can you name the tree?","section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"In honour of the British Woodland Trust's annual Tree of the Year competition, we've put together a handy quiz to help you identify some of the UK's most popular trees!","type":"STY"},{"assetId":"45576191","assetUri":"\/newsround\/45576191","firstCreated":"2018-09-19T13:53:20+00:00","hasShortForm":true,"headline":"Quiz: Celebrity Cake Off","includeComments":true,"language":"en-gb","lastUpdated":"2018-09-26T08:12:23+00:00","media":{"images":{"index":{"103494645":{"height":576,"width":1024,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/D579\/production\/_103494645_katy-p.jpg","originCode":"cpsprodpb","altText":"Chelsea buns with a celebrity face in the centre.","copyrightHolder":"Getty Images","allowSyndication":true}},"index-thumbnail":{"103494647":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/12399\/production\/_103494647_katy-p.jpg","originCode":"cpsprodpb","altText":"Chelsea buns with a celebrity face in the centre.","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Can you guess which celebrities are hidden in the cakes?","type":"STY"},{"assetId":"52527526","assetUri":"\/newsround\/52527526","firstCreated":"2020-05-04T06:54:09+00:00","hasShortForm":true,"headline":"Quiz: Which Star Wars character are you?","includeComments":true,"language":"en-gb","lastUpdated":"2020-05-04T07:58:30+00:00","media":{"images":{"index":{"112101706":{"height":444,"width":790,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/ED26\/production\/_112101706_untitled.jpg","originCode":"cpsprodpb","altText":"Which Star Wars character are you?","copyrightHolder":"BBC","allowSyndication":true}},"index-thumbnail":{"112101708":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/13B46\/production\/_112101708_untitled.jpg","originCode":"cpsprodpb","altText":"Which Star Wars character are you?","copyrightHolder":"BBC","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"overtypedHeadline":"Which Star Wars character are you?","section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Have you ever wondered who you'd be if you were in the Star Wars universe? (Yes, you definitely have!) Well now's your chance to find out for sure...","type":"STY"},{"assetId":"45355679","assetUri":"\/newsround\/45355679","firstCreated":"2018-08-30T10:50:57+00:00","hasShortForm":true,"headline":"Quiz: Who's behind the beard?","includeComments":true,"language":"en-gb","lastUpdated":"2018-08-30T10:50:57+00:00","media":{"images":{"index":{"103226660":{"height":576,"width":1024,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/1A06\/production\/_103226660_claudia-beard.jpg","originCode":"cpsprodpb","altText":"Female presenter with full beard.","copyrightHolder":"Getty Images","allowSyndication":true}},"index-thumbnail":{"103226662":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/6826\/production\/_103226662_claudia-beard.jpg","originCode":"cpsprodpb","altText":"Female presenter with full beard.","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"overtypedHeadline":"Who's behind the beard?","section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"To celebrate World Beard Day, we've given a few few celebrities some new facial hair. Can you guess who they are?","type":"STY"},{"assetId":"52565132","assetUri":"\/newsround\/52565132","firstCreated":"2020-05-07T15:42:12+00:00","headline":"QUIZ: What's the newest currency in the world?","includeComments":true,"language":"en-gb","lastUpdated":"2020-05-07T15:42:12+00:00","media":{"images":{"index":{"112179032":{"height":549,"width":976,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/5A39\/production\/_112179032_moneygetty.jpg","originCode":"cpsprodpb","altText":"Lots of world bank notes","copyrightHolder":"Getty Images","allowSyndication":true}},"index-thumbnail":{"112179034":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/A859\/production\/_112179034_moneygetty.jpg","originCode":"cpsprodpb","altText":"Lots of world bank notes","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"overtypedHeadline":"Do you know your cash?","section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Try our tricky money quiz and find out which country is changing the name of its money.","type":"STY"},{"assetId":"52648988","assetUri":"\/newsround\/52648988","firstCreated":"2020-05-13T10:59:13+00:00","hasShortForm":true,"headline":"Quiz: How much do you know about planet Earth?","includeComments":true,"language":"en-gb","lastUpdated":"2020-05-13T10:59:13+00:00","media":{"images":{"index":{"112255141":{"height":461,"width":820,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/374B\/production\/_112255141_auntitled.jpg","originCode":"cpsprodpb","altText":"earth in hands","copyrightHolder":"BBC","allowSyndication":true}},"index-thumbnail":{"112255143":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/856B\/production\/_112255143_auntitled.jpg","originCode":"cpsprodpb","altText":"earth in hands","copyrightHolder":"BBC","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Test your knowledge about the history of the planet","type":"STY"},{"assetId":"45435173","assetUri":"\/newsround\/45435173","firstCreated":"2018-09-06T11:09:47+00:00","hasShortForm":true,"headline":"Quiz: World Records - True or false?","includeComments":true,"language":"en-gb","lastUpdated":"2018-09-06T11:09:47+00:00","media":{"images":{"index":{"103317372":{"height":576,"width":1024,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/6AEB\/production\/_103317372_world-record-index.jpg","originCode":"cpsprodpb","altText":"Compilation of Guinness World Record holders.","copyrightHolder":"Guinness World Records 2019","allowSyndication":false}},"index-thumbnail":{"103317374":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/B90B\/production\/_103317374_world-record-index.jpg","originCode":"cpsprodpb","altText":"Guinness World Records 2019 cover.","copyrightHolder":"Guinness World Records 2019","allowSyndication":false}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"overtypedHeadline":"World Records - True or false?","section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Can you work out which of these world records are true and which are false?","type":"STY"},{"assetId":"52649183","assetUri":"\/newsround\/52649183","firstCreated":"2020-05-13T11:05:47+00:00","hasShortForm":true,"headline":"Quiz: Guess the celebrity siblings","includeComments":true,"language":"en-gb","lastUpdated":"2020-05-13T11:06:04+00:00","media":{"images":{"index":{"112255148":{"height":371,"width":659,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/148BB\/production\/_112255148_ra.jpg","originCode":"cpsprodpb","altText":"celebrity siblings","copyrightHolder":"Getty Images","allowSyndication":true}},"index-thumbnail":{"112255362":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/66F3\/production\/_112255362_ra.jpg","originCode":"cpsprodpb","altText":"celebrity siblings","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Can you work out which celebrities these people are related to? Play the quiz to find out.","type":"STY"},{"assetId":"49766312","assetUri":"\/newsround\/49766312","firstCreated":"2019-09-20T16:38:36+00:00","headline":"Quiz: How much do you know about Friends?","includeComments":true,"language":"en-gb","lastUpdated":"2019-09-21T07:28:07+00:00","media":{"images":{"index":{"108855320":{"height":549,"width":976,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/0933\/production\/_108855320_get1.jpg","originCode":"cpsprodpb","caption":"Friends turns 25 on 22 September","altText":"Friends","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"overtypedHeadline":"How much do you know about Friends?","passport":{"category":{"categoryId":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/www.bbc.co.uk\/ontologies\/applicationlogic-news\/News","categoryName":"News"}},"section":{"name":"News","id":"101227","uri":"\/newsround\/news","urlIdentifier":"\/newsround\/news"},"summary":"Friends is 25 years old this weekend! But how much do you know about the TV programme?","type":"STY"},{"assetId":"45861154","assetUri":"\/newsround\/45861154","firstCreated":"2018-10-15T09:55:15+00:00","hasShortForm":true,"headline":"Can you guess the royal baby?","language":"en-gb","lastUpdated":"2019-09-26T08:48:08+00:00","media":{"images":{"index":{"103868084":{"height":549,"width":976,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/BBD6\/production\/_103868084_newsround-royal-baby-title.jpg","originCode":"cpsprodpb","altText":"Pictures of royal babies","copyrightHolder":"Getty Images","allowSyndication":true}},"index-thumbnail":{"103868086":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/109F6\/production\/_103868086_newsround-royal-baby-title.jpg","originCode":"cpsprodpb","altText":"Pictures of royal babies","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"The Duke and Duchess of Sussex have announced that they are expecting a baby","type":"STY"},{"assetId":"46103360","assetUri":"\/newsround\/46103360","firstCreated":"2018-11-05T17:46:25+00:00","hasShortForm":true,"headline":"How well do you know your US presidents?","includeComments":true,"language":"en-gb","lastUpdated":"2018-11-06T08:24:41+00:00","media":{"images":{"index":{"104187383":{"height":1080,"width":1920,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/95EA\/production\/_104187383_trumpandbarack.jpg","originCode":"cpsprodpb","caption":"How well do you know your US presidents?","altText":"President Trump and President Obama","copyrightHolder":"Getty Images","allowSyndication":true}},"index-thumbnail":{"104187385":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/E40A\/production\/_104187385_trumpandbarack.jpg","originCode":"cpsprodpb","caption":"How well do you know your US presidents?","altText":"President Trump and President Obama","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"passport":{"category":{"categoryId":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/www.bbc.co.uk\/ontologies\/applicationlogic-news\/Interactive","categoryName":"Interactive"}},"section":{"name":"News","id":"101227","uri":"\/newsround\/news","urlIdentifier":"\/newsround\/news"},"summary":"As the US mid-term elections take place, test just how well you know your US presidents.","type":"STY"},{"assetId":"45024727","assetUri":"\/newsround\/45024727","firstCreated":"2018-07-31T16:02:57+00:00","hasShortForm":true,"headline":"Quiz: Happy birthday Harry Potter! But which family do you belong to?","language":"en-gb","lastUpdated":"2018-07-31T16:02:57+00:00","media":{"images":{"index":{"102775809":{"height":334,"width":594,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/162E9\/production\/_102775809_harry.jpg","originCode":"cpsprodpb","altText":"Harry Potter and his owl","copyrightHolder":"Getty Images","allowSyndication":true}},"index-thumbnail":{"102775811":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/2E51\/production\/_102775811_harry.jpg","originCode":"cpsprodpb","altText":"Harry Potter and his owl","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"overtypedHeadline":"Which Harry Potter family do you belong to?","overtypedSummary":"Take our quiz to find out which Harry Potter and the Cursed Child family would you fit into.","section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"To celebrate Harry Potter's birthday, take our quiz to find out which Harry Potter and the Cursed Child family would you fit into.","type":"STY"},{"assetId":"48768960","assetUri":"\/newsround\/48768960","firstCreated":"2019-06-26T06:21:26+00:00","hasShortForm":true,"headline":"Quiz: Which of these sports aren't in the Olympics?","includeComments":true,"language":"en-gb","lastUpdated":"2019-06-26T06:21:26+00:00","media":{"images":{"index":{"107541889":{"height":858,"width":1525,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/181FE\/production\/_107541889_sports.jpg","originCode":"cpsprodpb","altText":"variety-of-sports.","copyrightHolder":"Getty Images","allowSyndication":true}},"index-thumbnail":{"107542021":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/2EF8\/production\/_107542021_sports.jpg","originCode":"cpsprodpb","altText":"variety-of-sports.","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"overtypedHeadline":"Which of these sports aren't in the Olympics?","section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Following news that breakdancing could be included at the 2024 Olympic Games in Paris, test your knowledge of the event's sports.","type":"STY"}],"semanticGroupName":"More stories 4"},{"type":"responsive-cluster","title":"Slice 5 - Bright purple with teal index card","strapline":{"name":"Newsround Learn"},"items":[{"assetId":"51118364","assetUri":"\/newsround\/51118364","firstCreated":"2020-01-15T13:50:19+00:00","headline":"Welcome to Newsround Teachers","language":"en-gb","lastUpdated":"2020-01-15T13:50:19+00:00","media":{"images":{"index":{"110519471":{"height":576,"width":1024,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/4453\/production\/_110519471_teacher1_getty.jpg","originCode":"cpsprodpb","altText":"Teacher and children in a school classroom","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"CBBC's Newsround is the only integrated daily news service for kids and we have a wealth of material that could be used in any classroom","type":"STY"},{"assetId":"51723696","assetUri":"\/newsround\/51723696","firstCreated":"2020-03-03T12:35:03+00:00","hasShortForm":true,"headline":"Newsround: Our big stories this week","language":"en-gb","lastUpdated":"2020-05-26T10:15:18+00:00","media":{"images":{"index":{"111116437":{"height":549,"width":976,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/11EF5\/production\/_111116437_p07m5qmk.jpg","originCode":"cpsprodpb","altText":"newsround","copyrightHolder":"BBC","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Find out what Newsround has been talking about this week","type":"STY"},{"assetId":"51836693","assetUri":"\/newsround\/51836693","firstCreated":"2020-03-11T15:22:22+00:00","hasShortForm":true,"headline":"Newsround Worksheet: Headlines and glossary","language":"en-gb","lastUpdated":"2020-05-26T10:07:13+00:00","media":{"images":{"index":{"111224882":{"height":549,"width":976,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/70AA\/production\/_111224882_titlepage.png","originCode":"cpsprodpb","altText":"Big Stories and big words","copyrightHolder":"BBC","allowSyndication":true}},"index-thumbnail":{"111224886":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/10CEA\/production\/_111224886_titlepage.png","originCode":"cpsprodpb","altText":"Big Stories and big words","copyrightHolder":"BBC","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Here's all you need to know in a few lines and what all the words mean!","type":"STY"},{"assetId":"52712926","assetUri":"\/newsround\/52712926","firstCreated":"2020-05-19T11:53:05+00:00","hasShortForm":true,"headline":"Newsround topics: Climate change and pollution","language":"en-gb","lastUpdated":"2020-05-19T11:53:05+00:00","media":{"images":{"index":{"112357517":{"height":922,"width":1640,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/11797\/production\/_112357517_anrteachers_3-1.jpg","originCode":"cpsprodpb","altText":"climate","copyrightHolder":"BBC","allowSyndication":true}},"index-thumbnail":{"112357376":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/1072F\/production\/_112357376_nrteachers_3.jpg","originCode":"cpsprodpb","altText":"climate","copyrightHolder":"BBC","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Newsround topics: Climate change and pollution","type":"STY"},{"assetId":"52720395","assetUri":"\/newsround\/52720395","firstCreated":"2020-05-19T13:41:19+00:00","hasShortForm":true,"headline":"Newsround topics: People and events from history","language":"en-gb","lastUpdated":"2020-05-19T14:50:26+00:00","media":{"images":{"index":{"112357811":{"height":549,"width":976,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/2E63\/production\/_112357811_nrteachers_6.jpg","originCode":"cpsprodpb","altText":"history","copyrightHolder":"BBC","allowSyndication":true}},"index-thumbnail":{"112357813":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/7C83\/production\/_112357813_nrteachers_6.jpg","originCode":"cpsprodpb","altText":"history","copyrightHolder":"BBC","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Newsround topics: People and events from history","type":"STY"},{"assetId":"52712121","assetUri":"\/newsround\/52712121","firstCreated":"2020-05-19T13:41:40+00:00","hasShortForm":true,"headline":"Newsround topics: Space, astronauts and planets","language":"en-gb","lastUpdated":"2020-05-19T14:48:55+00:00","media":{"images":{"index":{"112357410":{"height":922,"width":1640,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/05C3\/production\/_112357410_anrteachers_3.jpg","originCode":"cpsprodpb","altText":"space","copyrightHolder":"BBC","allowSyndication":true}},"index-thumbnail":{"112357512":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/5447\/production\/_112357512_anrteachers_3.jpg","originCode":"cpsprodpb","altText":"space","copyrightHolder":"BBC","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Newsround topics: Space, astronauts and planets","type":"STY"},{"assetId":"52713537","assetUri":"\/newsround\/52713537","firstCreated":"2020-05-19T13:51:56+00:00","hasShortForm":true,"headline":"Newsround topics: The Natural World","language":"en-gb","lastUpdated":"2020-05-19T14:47:04+00:00","media":{"images":{"index":{"112357834":{"height":549,"width":976,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/AB63\/production\/_112357834_nrteachers_7.jpg","originCode":"cpsprodpb","altText":"nature","copyrightHolder":"BBC","allowSyndication":true}},"index-thumbnail":{"112357836":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/F983\/production\/_112357836_nrteachers_7.jpg","originCode":"cpsprodpb","altText":"nature","copyrightHolder":"BBC","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Newsround topics: The Natural World","type":"STY"},{"assetId":"52713333","assetUri":"\/newsround\/52713333","firstCreated":"2020-05-19T13:45:30+00:00","hasShortForm":true,"headline":"Newsround topics: PSHE and Mental Health","language":"en-gb","lastUpdated":"2020-05-19T13:45:30+00:00","media":{"images":{"index":{"112357520":{"height":922,"width":1640,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/0A0F\/production\/_112357520_anrteachers_4-1.jpg","originCode":"cpsprodpb","altText":"Mental health","copyrightHolder":"BBC","allowSyndication":true}},"index-thumbnail":{"112357405":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/C52B\/production\/_112357405_nrteachers_4.jpg","originCode":"cpsprodpb","altText":"mental health","copyrightHolder":"BBC","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Newsround topics: PSHE and Mental Health","type":"STY"},{"assetId":"51826298","assetUri":"\/newsround\/51826298","firstCreated":"2020-03-11T06:52:05+00:00","headline":"The girl campaigning for more diversity in books","language":"en-gb","lastUpdated":"2020-03-11T06:52:05+00:00","media":{"images":{"index":{"111219893":{"height":1080,"width":1920,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/9BD3\/production\/_111219893_youngreporter2.jpg","originCode":"cpsprodpb","altText":"Young-reporter-pic","copyrightHolder":"BBC","allowSyndication":true}},"index-thumbnail":{"111219895":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/E9F3\/production\/_111219895_youngreporter2.jpg","originCode":"cpsprodpb","altText":"Young-reporter-pic","copyrightHolder":"BBC","allowSyndication":true}}},"videos":{"index":{"51826299":{"caption":"The girl who is campaigning for more diversity in books","entityType":"Clip","externalId":"p0867897"}},"primary":{"51826299":{"caption":"The girl who is campaigning for more diversity in books","entityType":"Clip","externalId":"p0867897"}}}},"mediaType":"Video","options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"11-year-old Keziah thinks more needs to be done to promote authors from ethnic minority backgrounds.","type":"MAP"},{"assetId":"51644659","assetUri":"\/newsround\/51644659","firstCreated":"2020-03-03T06:07:40+00:00","headline":"Five tips if you're feeling worried about climate change","language":"en-gb","lastUpdated":"2020-03-03T06:41:35+00:00","media":{"images":{"index":{"111122470":{"height":576,"width":1024,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/1CFE\/production\/_111122470_laverne_antrobus.jpg","originCode":"cpsprodpb","altText":"Laverne antrobus tips","copyrightHolder":"BBC","allowSyndication":true}},"index-thumbnail":{"111122471":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/440E\/production\/_111122471_laverne_introbus2.jpg","originCode":"cpsprodpb","altText":"Laverne antrobus tips","copyrightHolder":"BBC","allowSyndication":true}}},"videos":{"index":{"51644784":{"caption":"Climate Anxiety: Five tips to deal with your worries about climate change","entityType":"Clip","externalId":"p084t5bv"}},"primary":{"51644784":{"caption":"Climate Anxiety: Five tips to deal with your worries about climate change","entityType":"Clip","externalId":"p084t5bv"}}}},"mediaType":"Video","options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Psychologist Laverne Antrobus has some advice if thinking about the environment is getting you down.","type":"MAP"},{"assetId":"52410744","assetUri":"\/newsround\/52410744","firstCreated":"2020-04-26T14:26:12+00:00","hasShortForm":true,"headline":"Australia: Life after the bushfires","includeComments":true,"language":"en-gb","lastUpdated":"2020-04-28T05:30:00+00:00","media":{"images":{"index":{"111977016":{"height":549,"width":976,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/EE95\/production\/_111977016_titlepage_still_00513.jpg","originCode":"cpsprodpb","altText":"Koala-and-firefighter-title-page.","copyrightHolder":"BBC","allowSyndication":true}},"index-thumbnail":{"111977015":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/C785\/production\/_111977015_titlepage_still_00513.jpg","originCode":"cpsprodpb","altText":"Koala-and-firefighter-title-page.","copyrightHolder":"BBC","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Australia experienced the worst bushfire season ever in 2019-2020 with fires blazing for months in large parts of the country. So what was it like living near them? We've been to find out.","type":"STY"},{"assetId":"51388287","assetUri":"\/newsround\/51388287","byline":{"name":"By Vicki Roberts","persons":[{"name":"Vicki Roberts","function":"Newsround","originCode":"MCS"}],"title":"Newsround"},"firstCreated":"2020-04-22T05:45:16+00:00","hasShortForm":true,"headline":"Five epic inventions fighting climate change","includeComments":true,"language":"en-gb","lastUpdated":"2020-04-22T05:45:16+00:00","media":{"images":{"index":{"111371873":{"height":576,"width":1024,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/93B9\/production\/_111371873_gettyimages-1097731282.jpg","originCode":"cpsprodpb","altText":"climate-change-renewable-energy-graphic.","copyrightHolder":"Getty Images","allowSyndication":true}},"index-thumbnail":{"111371875":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/E1D9\/production\/_111371875_gettyimages-1097731282.jpg","originCode":"cpsprodpb","altText":"climate-change-renewable-energy-graphic.","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"From carbon vacuums to kinetic pavements - check out these awesome inventions fighting climate change.","type":"STY"},{"assetId":"48201749","assetUri":"\/newsround\/48201749","firstCreated":"2019-05-08T14:29:15+00:00","headline":"What is VE Day?","language":"en-gb","lastUpdated":"2020-05-08T07:46:38+00:00","media":{"images":{"index":{"106837762":{"height":417,"width":741,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/6895\/production\/_106837762_1.jpg","originCode":"cpsprodpb","altText":"crowds-celebrating-VE-day.","copyrightHolder":"Getty Images","allowSyndication":true}},"index-thumbnail":{"106837764":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/B6B5\/production\/_106837764_1.jpg","originCode":"cpsprodpb","altText":"crowds-celebrating-VE-day.","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"passport":{"category":{"categoryId":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/www.bbc.co.uk\/ontologies\/applicationlogic-news\/News","categoryName":"News"}},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"VE Day - or Victory in Europe Day - marks the day towards the end of World War Two when fighting against Nazi Germany in Europe came to an end on 8 May 1945.","type":"STY"},{"assetId":"51403096","assetUri":"\/newsround\/51403096","firstCreated":"2020-02-06T18:24:31+00:00","headline":"Inside My Head: Taking Control of My Anxiety","language":"en-gb","lastUpdated":"2020-02-07T09:39:52+00:00","media":{"images":{"index":{"110806942":{"height":1152,"width":2048,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/6180\/production\/_110806942_p082hykf.jpg","originCode":"cpsprodpb","altText":"inside-my-head-taking-control-of-my-anxiety-a-newsround-special","copyrightHolder":"BBC","allowSyndication":true}},"index-thumbnail":{"110806944":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/AFA0\/production\/_110806944_p082hykf.jpg","originCode":"cpsprodpb","altText":"inside-my-head-taking-control-of-my-anxiety-a-newsround-special","copyrightHolder":"BBC","allowSyndication":true}}},"videos":{"index":{"51403097":{"caption":"Inside My Head: Taking Control of My Anxiety","entityType":"Clip","externalId":"p082hygn"}},"primary":{"51403097":{"caption":"Inside My Head: Taking Control of My Anxiety","entityType":"Clip","externalId":"p082hygn"}}}},"mediaType":"Video","options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"This Newsround special follows 16-year-old mental health campaigner Molly as she learns five different ways to battle her anxiety.","type":"MAP"},{"assetId":"42810179","assetUri":"\/newsround\/42810179","firstCreated":"2018-01-31T07:21:05+00:00","headline":"Guide: Why is plastic a problem?","language":"en-gb","lastUpdated":"2020-03-17T15:15:56+00:00","media":{"images":{"index":{"102207318":{"height":1152,"width":2048,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/13DDA\/production\/_102207318_mediaitem102207317.jpg","originCode":"cpsprodpb","altText":"A single discarded plastic water bottle on a sandy beach","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"passport":{"category":{"categoryId":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/www.bbc.co.uk\/ontologies\/applicationlogic-news\/News","categoryName":"News"}},"section":{"name":"News","id":"101227","uri":"\/newsround\/news","urlIdentifier":"\/newsround\/news"},"summary":"More than eight million tonnes of plastic goes into the world's oceans each year. That's a lot of plastic which can harm animals and the environment. So what's being done about it?","type":"STY"},{"assetId":"48352689","assetUri":"\/newsround\/48352689","firstCreated":"2019-05-23T05:44:13+00:00","hasShortForm":true,"headline":"Living with the wall: A Newsround special","includeComments":true,"language":"en-gb","lastUpdated":"2019-06-04T06:04:16+00:00","media":{"images":{"index":{"107074280":{"height":1152,"width":2048,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/2037\/production\/_107074280_trumpindex.jpg","originCode":"cpsprodpb","altText":"trump-wall","copyrightHolder":"Getty Images","allowSyndication":true}},"index-thumbnail":{"107074282":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/6E57\/production\/_107074282_trumpindex.jpg","originCode":"cpsprodpb","altText":"trump-wall","copyrightHolder":"Getty Images","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Newsround has been to the US-Mexico border to find out more about US President Donald Trump's proposed border wall. Watch the series of special reports.","type":"STY"},{"assetId":"25036313","assetUri":"\/newsround\/25036313","firstCreated":"2013-11-21T14:52:40+00:00","headline":"What is anxiety?","language":"en-gb","lastUpdated":"2019-02-15T07:11:23+00:00","media":{"images":{"index":{"92653792":{"height":1080,"width":1920,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/7427\/production\/_92653792_anxiety.jpg","originCode":"cpsprodpb","altText":"Cartoon","copyrightHolder":"BBC","allowSyndication":true}},"index-thumbnail":{"92653771":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/4547\/production\/_92653771_anxiety.jpg","originCode":"cpsprodpb","altText":"Cartoon","copyrightHolder":"BBC","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"Newsround spoke to mental health charity Mind to find out more about anxiety and what you can do if you're worried you might be experiencing it.","type":"STY"},{"assetId":"49997791","assetUri":"\/newsround\/49997791","firstCreated":"2019-10-10T10:23:16+00:00","hasShortForm":true,"headline":"What is a mental health problem?","language":"en-gb","lastUpdated":"2019-10-10T10:23:16+00:00","media":{"images":{"index":{"95330252":{"height":1080,"width":1920,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/6273\/production\/_95330252_whatismentalhealth.jpg","originCode":"cpsprodpb","altText":"mental-health-problem-graphic.","copyrightHolder":"BBC","allowSyndication":true}}}},"options":{"isBreakingNews":false,"isFactCheck":false},"section":{"name":"News","id":"101227","uri":"\/newsround\/news","urlIdentifier":"\/newsround\/news"},"summary":"If you break your arm or catch a cold, it is more obvious to see that you are poorly. If you have a mental health problem, it can be harder to spot.","type":"STY"},{"assetId":"44503109","assetUri":"\/newsround\/44503109","firstCreated":"2018-06-18T05:48:33+00:00","headline":"Finding My Family - Windrush: A Newsround Special","language":"en-gb","lastUpdated":"2018-06-18T05:48:33+00:00","media":{"images":{"index":{"103645942":{"height":261,"width":464,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/617A\/production\/_103645942_windrush-index.jpg","originCode":"cpsprodpb","altText":"Maya in a blue top, Levi in a red top, both smiling at the camera.","copyrightHolder":"BBC","allowSyndication":true}},"index-thumbnail":{"102189681":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/490A\/production\/_102189681_windrush-index.jpg","originCode":"cpsprodpb","altText":"Maya in a blue top, Levi in a red top, both smiling at the camera.","copyrightHolder":"BBC","allowSyndication":true}}},"videos":{"index":{"44503110":{"caption":"Windrush - Finding My Family: A Newsround Special","entityType":"Clip","externalId":"p06b6wkx"}},"primary":{"44503110":{"caption":"Windrush - Finding My Family: A Newsround Special","entityType":"Clip","externalId":"p06b6wkx"}}}},"mediaType":"Video","options":{"isBreakingNews":false,"isFactCheck":false},"overtypedHeadline":"Finding My Family - Windrush","section":{"name":"Home","id":"101226","uri":"\/newsround\/front_page","urlIdentifier":"\/newsround\/front_page"},"summary":"Maya and Levi head to the Caribbean to find out about where their grandparents grew up, and why they moved to the UK as part of a historic period that changed the face of Britain","type":"MAP"},{"assetId":"40848395","assetUri":"\/newsround\/40848395","firstCreated":"2017-08-08T10:11:06+00:00","headline":"Finding My Family - Partition: A Newsround Special","language":"en-gb","lastUpdated":"2017-08-08T10:11:06+00:00","media":{"images":{"index":{"97237248":{"height":1080,"width":1920,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/14931\/production\/_97237248_titleslateweb.jpg","originCode":"cpsprodpb","altText":"Finding My Family graphic","copyrightHolder":"BBC"}},"index-thumbnail":{"97237250":{"height":180,"width":320,"href":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/1499\/production\/_97237250_titleslateweb.jpg","originCode":"cpsprodpb","altText":"Finding My Family graphic","copyrightHolder":"BBC"}}},"videos":{"index":{"40862255":{"caption":"Watch Finding My Family - Partition: A Newsround Special","entityType":"Clip","externalId":"p05bv3k7"}},"primary":{"40862255":{"caption":"Watch Finding My Family - Partition: A Newsround Special","entityType":"Clip","externalId":"p05bv3k7"}}}},"mediaType":"Video","options":{"isBreakingNews":false,"isFactCheck":false},"overtypedHeadline":"Finding My Family - Partition","section":{"name":"News","id":"101227","uri":"\/newsround\/news","urlIdentifier":"\/newsround\/news"},"summary":"Sumayyah, Shubhashukla and Kamolpriya are on the mission of their lives to find out what happened to their families during the Partition of India.","type":"MAP"}],"semanticGroupName":"More stories 5"}],"iStatsCounterName":"newsround.home.page","language":"en-gb","lastUpdated":"2020-05-31T10:19:10+00:00","options":{"allowAdvertising":false},"section":{"name":"CBBC Newsround","id":"103094","uri":"\/newsround\/home","urlIdentifier":"\/newsround\/home"},"summary":"The home of news and fun facts for kids. Find out what is going on, with stories, pictures and videos. Try a quiz or one of our free games","title":"CBBC Newsround","type":"IDX","lastPublished":"2020-05-31T13:23:09+00:00","id":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/www.bbc.co.uk\/asset\/69a8f5ef-1d3a-b1f9-e050-17ac8045757b\/desktop\/domestic"}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-newsround-index-promos-data/assetUri/newsround%2Fhome/previewGuid/undefined/semanticGroupName/More%20stories%203/version/4.0.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"name":"Gaming","items":[{"id":"52076081","promoType":"story","timestamp":"2020-05-27T07:37:36+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/1382D\/production\/_111471997_dungeons.jpg","imgAlt":"minecraft-dungeons-cover-art.","headline":"Minecraft Dungeons is out!","summary":"Minecraft Dungeons has been finally been released, so here is what you need to know about the new game.","href":"\/newsround\/52076081","includeComments":true},{"id":"52769868","promoType":"story","timestamp":"2020-05-22T16:21:46+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/17AF2\/production\/_96501079_pac-man.gif","imgAlt":"Pac-Man ghosts","headline":"Five facts for Pac-Man's 40th","summary":"Happy birthday Pac-Man!","href":"\/newsround\/52769868","includeComments":true},{"id":"52136993","promoType":"story","timestamp":"2020-04-08T12:52:18+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/14156\/production\/_111526228_season22motage.jpg","imgAlt":"fortnite-chapter-2-season-2.","headline":"Gaming top tips: Fortnite","summary":"If you're a fan of Fortnite, then these top tips could help you out!","href":"\/newsround\/52136993","includeComments":true},{"id":"52105524","promoType":"story","timestamp":"2020-04-08T11:17:17+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/4DA7\/production\/_111497891_mediaitem111497890.jpg","imgAlt":"animal-crossing.","headline":"Gaming top tips: Animal Crossing","summary":"If you've been playing Animal Crossing, here are some top tips that could help you out!","href":"\/newsround\/52105524","includeComments":true},{"id":"52118980","promoType":"story","timestamp":"2020-04-08T11:26:34+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/7438\/production\/_111525792_minecraft_horizontal_key_art.jpg","imgAlt":"minecraft.","headline":"Gaming top tips: Minecraft","summary":"If you love Minecraft then we've got some top tips you might not have heard of to try out!","href":"\/newsround\/52118980","includeComments":true},{"id":"52230222","promoType":"story","timestamp":"2020-04-14T13:01:54+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/3CB6\/production\/_111724551_fifa20.jpg","imgAlt":"Jadon-Sancho-FIFA20.","headline":"Gaming top tips: Fifa 20","summary":"Some hints, tips and tricks to help you reach the next level on Fifa 20.","href":"\/newsround\/52230222","includeComments":true},{"id":"52487582","promoType":"story","timestamp":"2020-05-04T08:33:29+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/149B5\/production\/_112050448_mediaitem112049974.jpg","imgAlt":"mario-tennis.","headline":"Who won the all-star Mario Tennis tournament?","summary":"Pro-tennis players and celebrities teamed up for a charity tennis tournament with a difference!","href":"\/newsround\/52487582","includeComments":true},{"id":"52151617","promoType":"story","timestamp":"2020-04-05T09:06:01+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/12CA\/production\/_111601840_witchbrook_image_3.png","imgAlt":"witchbrook.","headline":"Harry Potter meets Stardew Valley in new game Witchbrook","summary":"If you're ready to go to magic school and set up your own wizarding shops, then Witchbrook could be for you!","href":"\/newsround\/52151617","includeComments":true},{"id":"52740567","promoType":"story","timestamp":"2020-05-20T14:06:12+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/AEDF\/production\/_112176744_gaminggran.jpg","imgAlt":"Hamako-Mori.","headline":"Meet the gaming granny who has just broken a world record!","summary":"The record-breaking gaming Grandma has played for 39 years and says gaming has made life 'more fun'.","href":"\/newsround\/52740567","includeComments":true},{"id":"52810167","promoType":"story","timestamp":"2020-05-26T13:36:03+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/3CAA\/production\/_112503551_shutterstock_editorial_8846726b.jpg","imgAlt":"daniel-abt-in-racing-car","headline":"Pro race driver cheats in online tournament","summary":"Driver Daniel Abt hired a professional gamer to play for him in Formula E 'Race at Home' competition.","href":"\/newsround\/52810167","includeComments":true},{"id":"52673146","promoType":"story","timestamp":"2020-05-16T07:15:08+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/01D4\/production\/_112286400_mediaitem112286399.jpg","imgAlt":"paper-mario.","headline":"The new Mario game coming to Switch","summary":"Nintendo have just announced that a new Mario game will be heading to the Switch","href":"\/newsround\/52673146","includeComments":true},{"id":"52500501","promoType":"story","timestamp":"2020-05-01T09:15:38+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/7FA5\/production\/_112077623_mediaitem112058095.jpg","imgAlt":"Andy-Murray","headline":"Andy Murray wins Madrid Open...on PlayStation!","summary":"Tennis stars had been competing using a PlayStation tennis game - and Murray gave half his winnings to the NHS","href":"\/newsround\/52500501","includeComments":true},{"id":"52456575","promoType":"story","timestamp":"2020-04-29T05:37:48+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/934F\/production\/_112011773_mining.jpg","imgAlt":"data-mining.","headline":"How coding detectives dig out gaming secrets","summary":"What is data mining and how do people find out about new gaming updates?","href":"\/newsround\/52456575","includeComments":true},{"id":"52136687","promoType":"story","timestamp":"2020-04-02T17:08:48+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/16989\/production\/_111535529_2df67d9b-7138-4e93-9eab-11ba4a791953.jpg","imgAlt":"Polishing-a-bafta","headline":"Bafta Games Awards to take place online","summary":"Due to the ongoing coronavirus pandemic, the winners of the Bafta Games Awards will be announced via a live stream.","href":"\/newsround\/52136687","includeComments":false},{"id":"52180192","promoType":"story","timestamp":"2020-04-06T12:58:48+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/14B38\/production\/_111629748_drewmcintrye.jpg","imgAlt":"Drew McIntyre.","headline":"WrestleMania 36: Six things you need to know","summary":"WrestleMania 36 took place on Sunday night. Here are six things you need to know, including the first ever UK WWE Champ","href":"\/newsround\/52180192","includeComments":true},{"id":"51976450","promoType":"story","timestamp":"2020-03-20T12:27:11+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/1212B\/production\/_111372047_echo_webbanner_final_v3.png","imgAlt":"echo-overwatch.","headline":"Who's the new Overwatch character?","summary":"Meet Echo, the newest member of the Overwatch team, here's everything we know about her so far.","href":"\/newsround\/51976450","includeComments":true},{"id":"51962151","promoType":"story","timestamp":"2020-03-20T06:48:08+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/54DE\/production\/_111362712_mediaitem111362711.jpg","imgAlt":"animal-crossing-tent.","headline":"Animal Crossing New Horizons is out! Here's all you need to know","summary":"Nintendo have released the new Animal Crossing game - but what's it all about?","href":"\/newsround\/51962151","includeComments":true},{"id":"51266122","promoType":"story","timestamp":"2020-02-09T08:11:56+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/13E34\/production\/_110706418_b1e649d2-0c17-4265-9351-26a41a7f5264.jpg","imgAlt":"the-sims-game-characters.","headline":"The Sims turns 20!","summary":"The Sims is celebrating its 20th anniversary today! But how did it become one of the world's best-selling games? We've been finding out...","href":"\/newsround\/51266122","includeComments":true},{"id":"51733247","promoType":"story","timestamp":"2020-03-04T07:17:04+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/12763\/production\/_109491657_mariokart.jpg","imgAlt":"mario-kart-tour.","headline":"Mario Kart Tour finally gets multiplayer mode!","summary":"Previously players have only been able to play solo, or pay to play a beta version of multiplayer mode.","href":"\/newsround\/51733247","includeComments":true},{"id":"51476191","promoType":"story","timestamp":"2020-02-13T06:12:08+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/4675\/production\/_110873081_profesoroak.jpg","imgAlt":"professor-oak","headline":"Pok茅mon: What do you think of Professor Oak's new look?","summary":"This is Pok茅mon's Professor Oak as you've never seen him before - with a new hairdo, wrap-around shades and beard! But what do you think?","href":"\/newsround\/51476191","includeComments":true},{"id":"51441467","promoType":"story","timestamp":"2020-02-10T12:01:54+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/E442\/production\/_110843485_mediaitem110836356.jpg","imgAlt":"Fifa eClub World Cup","headline":"Who won the Fifa eClub World Cup?","summary":"Some of the world's best Fifa players travelled to Milan to compete in the Fifa eClub World Cup, but there can only be one winning team.","href":"\/newsround\/51441467","includeComments":true},{"id":"51415843","promoType":"story","timestamp":"2020-02-09T08:02:12+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/131DD\/production\/_110810387_netherite.jpg","imgAlt":"netherite-block-minecraft.","headline":"Minecraft: Is Netherite better than diamonds?!","summary":"A new update to the Nether in Minecraft has revealed a new material that could be better than diamonds!","href":"\/newsround\/51415843","includeComments":true},{"id":"51387735","promoType":"story","timestamp":"2020-02-05T17:00:27+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/1A66\/production\/_110785760_gettyimages-1128681561.jpg","imgAlt":"gamer","headline":"Everything you need to know about the Fifa eClub World Cup","summary":"The Fifa eClub World Cup starts on Friday in Italy will see 24 teams from all over the world battling it out to be crowned the winner.","href":"\/newsround\/51387735","includeComments":true},{"id":"51368413","promoType":"story","timestamp":"2020-02-04T17:49:53+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/7A41\/production\/_104279213_garethbale.jpg","imgAlt":"Gareth Bale celebrates scoring in Wales' 4-1 Nations league win over the Republic of Ireland in September","headline":"Gareth Bale has launched an e-sports team","summary":"Wales and Real Madrid player Gareth Bale has set up a new e-sports organisation!","href":"\/newsround\/51368413","includeComments":true},{"id":"51266123","promoType":"story","timestamp":"2020-01-27T17:15:28+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/0EE6\/production\/_109241830_chapter2montage.jpg","imgAlt":"fortnite-chapter-2-season-1.","headline":"Why is the new season of Fortnite taking so long?","summary":"Fortnite Chapter 2 Season 2 seems to be taking a lot longer than normal to arrive - we've been finding out why.","href":"\/newsround\/51266123","includeComments":true},{"id":"51266124","promoType":"story","timestamp":"2020-01-27T14:57:16+00:00","imgSrc":"https:\/\/web.archive.org\/web\/20200531140253\/http:\/\/c.files.bbci.co.uk\/1006E\/production\/_110664656_twitchyoutube.jpg","imgAlt":"twitch-logo-youtube-logo.","headline":"Why Overwatch League is ditching Twitch","summary":"YouTube has bought the rights - or permissions - to stream Activision Blizzard esports tournaments like Overwatch League. Here's what that means.","href":"\/newsround\/51266124","includeComments":true}]}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52866488/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52866488":6}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52852636/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52852636":25}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52837288/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52837288":1}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52838577/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52838577":7}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52847195/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52847195":7}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__48460961/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__48460961":27}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52821345/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52821345":30}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52830492/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52830492":0}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52830119/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52830119":12}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52831552/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52831552":1}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52830196/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52830196":16}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52830770/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52830770":3}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52830244/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52830244":24}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52821768/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52821768":7}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52817090/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52817090":33}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52788389/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52788389":34}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52812882/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52812882":19}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__51204456/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__51204456":424}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52200989/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52200989":124}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52131937/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52131937":9}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52351553/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52351553":17}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52658861/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52658861":19}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52280887/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52280887":13}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52076081/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52076081":44}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52136993/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52136993":70}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52105524/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52105524":35}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52118980/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52118980":57}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52740567/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52740567":50}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__52456575/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__52456575":27}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__51962151/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__51962151":5}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__51733247/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__51733247":0}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__45355679/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__45355679":83}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__48768960/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__48768960":2}}); });</script><script>Morph.toInit.payloads.push(function() { Morph.setPayload('/data/bbc-morph-comments-count-data/apiKey/c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990/forumId/__newsround__48352689/version/1.1.0', {"meta":{"responseCode":200,"errorMessage":null,"headers":{"x-morph-privacy-level":"public","content-type":"application\/json"}},"body":{"__newsround__48352689":4}}); });</script><script>Morph.toInit.registers.push(function() { Morph.register({"view":"bbc-morph-newsround-home-controller","assetUri":"newsround\/home","commentsApiKey":"c31ba4dc-6a82-4b1e-99ab-e9dc4e08e990","isUk":"true","path":"\/newsround","version":"5.3.11","_mrrVersion":"2.0.16"},'u5736191167639911'); });</script><script>Morph.init = function() { if (!Morph.initCalled) { Morph.markPerformance('morph-init'); Morph.initCalled = true; requirejs.config({ paths: { 'live-push': '//web.archive.org/web/20200531140253/https://push.api.bbci.co.uk/public/client' } }); } function attempt(fn) { fn(); } if (!Morph.toInitsCalled) { Morph.markPerformance('morph-init-core-deps-complete'); Morph.toInitsCalled = true; } Morph.toInit.bundles.forEach(attempt); Morph.toInit.bundles = []; Morph.markPerformance('morph-init-bundles-complete'); Morph.toInit.payloads.forEach(attempt); Morph.toInit.payloads = []; Morph.markPerformance('morph-init-payloads-complete'); Morph.toInit.registers.forEach(attempt); Morph.toInit.registers = []; Morph.markPerformance('morph-init-registers-complete'); };</script><script src="//web.archive.org/web/20200531140253js_/https://m.files.bbci.co.uk/modules/morph-vendor/1.0.2/bundle.vendor.js"></script><script src="//web.archive.org/web/20200531140253js_/https://m.files.bbci.co.uk/modules/morph/5.3.1/bundle.js"></script><script src="//web.archive.org/web/20200531140253js_/https://m.files.bbci.co.uk/modules/bbc-morph-promise/1.0.6/bundle.js"></script><script src="//web.archive.org/web/20200531140253js_/https://m.files.bbci.co.uk/modules/bbc-morph-istats/1.3.0/bundle.js"></script><script src="//web.archive.org/web/20200531140253js_/https://m.files.bbci.co.uk/modules/bbc-morph-react-mvt/3.1.2/bundle.js"></script><script src="//web.archive.org/web/20200531140253js_/https://m.files.bbci.co.uk/modules/bbc-morph-classnames/1.0.2/bundle.js"></script><script src="//web.archive.org/web/20200531140253js_/https://m.files.bbci.co.uk/modules/bbc-morph-gel-icons/3.0.0/bundle.js"></script><script src="//web.archive.org/web/20200531140253js_/https://m.files.bbci.co.uk/modules/bbc-morph-newsround-button/4.0.0/bundle.js"></script><script src="//web.archive.org/web/20200531140253js_/https://m.files.bbci.co.uk/modules/bbc-morph-istats-internal-link-tracking/2.2.0/bundle.js"></script><script src="//web.archive.org/web/20200531140253js_/https://m.files.bbci.co.uk/modules/bbc-morph-newsround-anchors/2.1.2/bundle.js"></script><script src="//web.archive.org/web/20200531140253js_/https://m.files.bbci.co.uk/modules/bbc-morph-newsround-section-container/4.0.18/bundle.js"></script><script src="//web.archive.org/web/20200531140253js_/https://m.files.bbci.co.uk/modules/bbc-morph-newsround-header/6.1.1/bundle.js"></script><script src="//web.archive.org/web/20200531140253js_/https://m.files.bbci.co.uk/modules/bbc-morph-grandstand/5.4.2/bundle.js"></script><script src="//web.archive.org/web/20200531140253js_/https://m.files.bbci.co.uk/modules/bbc-morph-newsround-cbbc-nav/4.1.0/bundle.js"></script><script src="//web.archive.org/web/20200531140253js_/https://m.files.bbci.co.uk/modules/bbc-morph-newsround-home-controller/5.3.11/bundle.js"></script><script src="//web.archive.org/web/20200531140253js_/https://m.files.bbci.co.uk/modules/bbc-morph-gel-icons/3.0.0/gel-icon-play/bundle.js"></script><script src="//web.archive.org/web/20200531140253js_/https://m.files.bbci.co.uk/modules/bbc-morph-gel-icons/3.0.0/gel-icon-image/bundle.js"></script><script src="//web.archive.org/web/20200531140253js_/https://m.files.bbci.co.uk/modules/bbc-morph-gel-icons/3.0.0/gel-icon-comments/bundle.js"></script><script src="//web.archive.org/web/20200531140253js_/https://m.files.bbci.co.uk/modules/bbc-morph-debouncer/1.0.1/bundle.js"></script><script src="//web.archive.org/web/20200531140253js_/https://m.files.bbci.co.uk/modules/bbc-morph-responsive-image/1.3.1/bundle.js"></script><script src="//web.archive.org/web/20200531140253js_/https://m.files.bbci.co.uk/modules/bbc-morph-image-chef-url-transformer/2.1.0/bundle.js"></script><script src="//web.archive.org/web/20200531140253js_/https://m.files.bbci.co.uk/modules/bbc-morph-newsround-bulletin-promo/4.2.1/bundle.js"></script><script src="//web.archive.org/web/20200531140253js_/https://m.files.bbci.co.uk/modules/bbc-morph-bump/1.1.0/bundle.js"></script><script src="//web.archive.org/web/20200531140253js_/https://m.files.bbci.co.uk/modules/bbc-morph-smp/5.0.1/bundle.js"></script><script src="//web.archive.org/web/20200531140253js_/https://m.files.bbci.co.uk/modules/bbc-morph-localised-timestamp/3.1.2/bundle.js"></script><script src="//web.archive.org/web/20200531140253js_/https://m.files.bbci.co.uk/modules/bbc-morph-classnames/1.0.1/bundle.js"></script><script src="//web.archive.org/web/20200531140253js_/https://m.files.bbci.co.uk/modules/bbc-morph-gs-timestamp/2.2.1/bundle.js"></script><script src="//web.archive.org/web/20200531140253js_/https://m.files.bbci.co.uk/modules/bbc-morph-newsround-timestamp/4.1.2/bundle.js"></script><script src="//web.archive.org/web/20200531140253js_/https://m.files.bbci.co.uk/modules/bbc-morph-newsround-promo/5.1.0/bundle.js"></script><script src="//web.archive.org/web/20200531140253js_/https://m.files.bbci.co.uk/modules/bbc-morph-newsround-more-stories/4.1.3/bundle.js"></script><script src="//web.archive.org/web/20200531140253js_/https://m.files.bbci.co.uk/modules/bbc-morph-newsround-top-stories/6.1.1/bundle.js"></script><script src="//web.archive.org/web/20200531140253js_/https://m.files.bbci.co.uk/modules/bbc-morph-newsround-super-promo/3.1.1/bundle.js"></script><script src="//web.archive.org/web/20200531140253js_/https://m.files.bbci.co.uk/modules/bbc-morph-grandstand/5.4.2/latin/bundle.js"></script><script>if (!Morph.manualInit) { Morph.init(); } /* u5736191167639911 */</script><!-- Chartbeat Web Analytics code - start --> <script type="text/javascript"> /** CONFIGURATION START **/ (function() { var noCookies = true; var cookiePrefix = '_chartbeat'; if ("object" === typeof bbccookies && typeof bbccookies.readPolicy == 'function') { noCookies = !bbccookies.readPolicy().performance; } if (noCookies && document.cookie.indexOf(cookiePrefix) !== -1) { //Find and remove cookies whose names begin with '_chartbeat' var cookieSplit = document.cookie.split(';'); var cookieLength = cookieSplit.length; while (cookieLength--) { var cookie = cookieSplit[cookieLength].replace(/^s+|s+$/g, ''); var cookieName = cookie.split('=')[0]; if (cookieName.indexOf(cookiePrefix) === 0) { document.cookie = cookieName + '=; expires=Thu, 01 Jan 1970 00:00:00 GMT; path=/;'; } } } _sf_async_config.noCookies = noCookies; }()); /** CONFIGURATION END **/ (function(){ function loadChartbeat() { window._sf_endpt=(new Date()).getTime(); var e = document.createElement("script"); e.setAttribute("language", "javascript"); e.setAttribute("type", "text/javascript"); e.setAttribute('src', '//web.archive.org/web/20200531140253/https://static.chartbeat.com/js/chartbeat.js'); document.body.appendChild(e); } var oldonload = window.onload; window.onload = (typeof window.onload != "function") ? loadChartbeat : function() { oldonload(); loadChartbeat(); }; }()); </script> <!-- Chartbeat Web Analytics code - end --></body></html><!-- FILE ARCHIVED ON 14:02:53 May 31, 2020 AND RETRIEVED FROM THE INTERNET ARCHIVE ON 21:32:39 Feb 17, 2025. JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE. ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C. SECTION 108(a)(3)). --> <!-- playback timings (ms): captures_list: 0.661 exclusion.robots: 0.026 exclusion.robots.policy: 0.016 esindex: 0.009 cdx.remote: 16.298 LoadShardBlock: 832.238 (6) PetaboxLoader3.datanode: 620.254 (7) load_resource: 142.787 PetaboxLoader3.resolve: 114.149 -->